/* Integrity Excavation & Land Clearing — site stylesheet */
:root {
  --ink: #16191d;
  --ink-2: #22262c;
  --paper: #f7f5f1;
  --card: #ffffff;
  --orange: #f26a1b;
  --orange-dark: #b3470a;
  --amber: #ffb400;
  --steel: #5b6470;
  --line: #e4dfd7;
  --radius: 10px;
  --maxw: 1120px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-dark); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink);
  color: #cfd4da;
  font-size: 14px;
  padding: 7px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--amber); text-decoration: none; font-weight: 600; }

/* ---------- header / nav ---------- */
header.site {
  background: var(--ink-2);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--orange);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px; flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 44px; height: 44px; flex: none; }
.brand .name { color: #fff; font-weight: 800; font-size: 19px; line-height: 1.15; letter-spacing: .02em; }
.brand .name small { display: block; color: var(--amber); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
nav.main { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav.main a {
  color: #dfe3e8; text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 8px 12px; border-radius: 6px;
}
nav.main a:hover, nav.main a[aria-current="page"] { background: rgba(255,255,255,.09); color: #fff; }
.btn {
  display: inline-block; background: var(--orange); color: var(--ink) !important;
  font-weight: 800; text-decoration: none; padding: 12px 22px; border-radius: 8px;
  border: 0; font-size: 16px; cursor: pointer; letter-spacing: .01em;
}
.btn:hover { background: var(--amber); }
.btn.ghost { background: transparent; border: 2px solid #fff; color: #fff !important; }
.btn.ghost:hover { color: #fff !important; }
.btn.ghost:hover { background: rgba(255,255,255,.12); }
nav.main .btn { padding: 10px 18px; font-size: 15px; }

/* ---------- hero ---------- */
.hero {
  background:
    linear-gradient(115deg, rgba(13,15,18,.94) 0%, rgba(13,15,18,.82) 45%, rgba(13,15,18,.55) 100%),
    var(--ink-2);
  background-size: cover; background-position: center;
  color: #fff; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background: repeating-linear-gradient(-45deg, var(--amber) 0 18px, var(--ink) 18px 36px);
}
.hero .wrap { padding: 84px 20px 96px; max-width: 900px; margin: 0; }
.hero .kicker {
  color: var(--amber); font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  font-size: 13px; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.06; font-weight: 900; letter-spacing: -.015em; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero p.lead { margin: 20px 0 30px; font-size: 19px; color: #d7dce2; max-width: 620px; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .ctas .btn { font-size: 17px; padding: 15px 28px; }

/* ---------- trust bar ---------- */
.trust { background: var(--ink); color: #e8ebee; }
.trust .wrap {
  display: flex; justify-content: space-between; gap: 10px 26px; flex-wrap: wrap;
  padding-top: 16px; padding-bottom: 16px; font-weight: 700; font-size: 15px;
}
.trust span { display: flex; align-items: center; gap: 8px; }
.trust svg { width: 18px; height: 18px; fill: var(--amber); flex: none; }

/* ---------- sections ---------- */
section { padding: 72px 0; }
section.alt { background: #efece6; }
.eyebrow {
  color: var(--orange-dark); font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; font-size: 13px; margin-bottom: 10px;
}
h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 900; line-height: 1.12; letter-spacing: -.01em; margin-bottom: 14px; }
h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.sub { color: var(--steel); max-width: 720px; margin-bottom: 40px; font-size: 18px; }

/* ---------- service cards ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative;
  box-shadow: 0 1px 3px rgba(20,20,20,.05);
}
.card .icon {
  width: 52px; height: 52px; border-radius: 10px; background: var(--ink-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .icon svg { width: 30px; height: 30px; fill: var(--amber); }
.card p { color: var(--steel); font-size: 16px; }
.card a.more { display: inline-block; margin-top: 14px; font-weight: 800; text-decoration: none; }
.card a.more::after { content: " →"; }

/* ---------- checklist / bullets ---------- */
ul.checks { list-style: none; display: grid; gap: 10px; margin: 18px 0; }
ul.checks li { padding-left: 30px; position: relative; }
ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px;
  background: var(--orange); border-radius: 50%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
}

/* ---------- steps ---------- */
.steps { counter-reset: step; }
.steps .card::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 20px; right: 24px; font-size: 42px; font-weight: 900;
  color: #ece7df;
}

/* ---------- photo slots ---------- */
.photo-slot {
  border-radius: var(--radius); min-height: 260px;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px), linear-gradient(160deg, #3a4048 0%, #23272e 100%);
  display: flex; align-items: center; justify-content: center;
  color: #9aa3ad; font-weight: 700; text-align: center; padding: 20px; font-size: 15px;
}

/* ---------- areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-weight: 600; font-size: 15px;
}

/* ---------- reviews ---------- */
blockquote.review { font-size: 16px; }
blockquote.review .stars { color: var(--amber); font-size: 18px; letter-spacing: 2px; display: block; margin-bottom: 10px; }
blockquote.review p { color: var(--steel); }
blockquote.review footer { margin-top: 14px; font-weight: 700; color: var(--ink); font-size: 14.5px; }

/* ---------- FAQ ---------- */
details.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 12px;
}
details.faq summary { font-weight: 800; font-size: 17px; cursor: pointer; }
details.faq p { margin-top: 10px; color: var(--steel); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-2); color: #fff; text-align: center; position: relative; }
.cta-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 8px;
  background: repeating-linear-gradient(-45deg, var(--amber) 0 18px, var(--ink) 18px 36px);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c8cdd4; margin-bottom: 26px; }
.cta-band .phone { font-size: clamp(26px, 4vw, 40px); font-weight: 900; color: var(--amber); text-decoration: none; display: inline-block; margin-bottom: 20px; }

/* ---------- forms ---------- */
form.estimate { display: grid; gap: 14px; }
form.estimate label { font-weight: 700; font-size: 15px; }
form.estimate input, form.estimate select, form.estimate textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: #fff; margin-top: 4px;
}
form.estimate textarea { min-height: 120px; resize: vertical; }

/* ---------- footer ---------- */
footer.site { background: var(--ink); color: #aeb5bd; font-size: 15px; }
footer.site .wrap { padding: 56px 20px 28px; display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
footer.site .fh { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 12px; letter-spacing: .04em; text-transform: uppercase; }
footer.site a { color: #d7dce2; text-decoration: none; }
footer.site a:hover { color: var(--amber); }
footer.site ul { list-style: none; display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid #2c3138; text-align: center; padding: 18px 20px; color: #7d858f; font-size: 13.5px; }
address { font-style: normal; line-height: 1.7; }

/* ---------- utility ---------- */
.split { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1.1fr .9fr; } }
.sticky-call { display: none; }
@media (max-width: 720px) {
  .sticky-call {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--orange); color: var(--ink); text-align: center; font-weight: 900;
    font-size: 18px; padding: 15px; text-decoration: none; box-shadow: 0 -4px 14px rgba(0,0,0,.25);
  }
  body { padding-bottom: 54px; }
}
