/* ============================================================
   WOODSIDE LAND CLEARING — design tokens
   Direction: rugged / industrial. Deep pine darks, equipment
   yellow, stenciled "ID plate" labels, chainsaw-cut dividers.
   ============================================================ */

:root {
  /* color */
  --pine-950: #0b1712;
  --pine-900: #10241a;
  --pine-800: #16311f;
  --pine-700: #1f4229;
  --line: rgba(237, 231, 218, 0.14);
  --bone: #ede7da;
  --bone-dim: #b9b2a3;
  --equip: #eaa332;
  --equip-dim: #b9822a;
  --bark: #7a5230;
  --rust: #9c4a2e;

  /* type */
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Barlow", "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;

  /* layout */
  --maxw: 1180px;
  --edge: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--pine-950);
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

p { color: var(--bone-dim); }
.lede { color: var(--bone); font-size: 1.15rem; max-width: 54ch; }

/* skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--equip); color: #14150f;
  padding: 10px 16px; z-index: 200; font-family: var(--mono);
}
.skip-link:focus { left: var(--edge); }

/* ---------- "ID plate" signature label ---------- */
.plate {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--equip);
  border: 1.5px solid var(--equip-dim);
  padding: 0.5em 0.9em;
  position: relative;
  background: rgba(234, 163, 50, 0.06);
}


/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.6em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn--fill { background: var(--equip); color: #191a12; font-weight: 700; }
.btn--fill:hover { background: #f4b856; transform: translateY(-2px); }
.btn--ghost { border-color: var(--bone-dim); color: var(--bone); }
.btn--ghost:hover { border-color: var(--equip); color: var(--equip); transform: translateY(-2px); }

/* ---------- header / nav ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(var(--pine-950), rgba(11,23,18,0.97));
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--edge);
  max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 44px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 36px; } }
nav.links { display: flex; align-items: center; gap: 28px; }
nav.links a {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
nav.links a:hover, nav.links a[aria-current="page"] { color: var(--bone); border-color: var(--equip); }
.nav-call {
  display: flex; align-items: center; gap: 22px;
}
.nav-phone {
  font-family: var(--mono); color: var(--equip); text-decoration: none; font-size: 0.95rem; letter-spacing: 0.03em;
  display: none;
}
.menu-toggle {
  display: none;
  background: none; border: 1px solid var(--line); color: var(--bone);
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em;
  padding: 8px 12px; cursor: pointer; text-transform: uppercase;
}

@media (min-width: 900px) { .nav-phone { display: inline; } }

@media (max-width: 899px) {
  nav.links {
    position: fixed; inset: 62px 0 auto 0;
    background: var(--pine-900);
    flex-direction: column; align-items: flex-start;
    padding: 20px var(--edge) 26px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  nav.links.open { transform: translateY(0); }
  .menu-toggle { display: inline-block; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: flex-end;
  background: #08120d;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5;
  filter: saturate(0.85) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,18,13,0.35) 0%, rgba(8,18,13,0.55) 45%, rgba(8,18,13,0.97) 96%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 84px; width: 100%; }
.hero .plate { margin-bottom: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

/* ---------- stat / plate strip ---------- */
.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--pine-900);
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stat {
  padding: 26px 20px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.stat:first-child { border-left: none; }
.stat b {
  display: block; font-family: var(--display); font-size: 2.1rem; color: var(--equip);
  text-transform: none;
}
.stat span {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim);
}

/* ---------- sections ---------- */
section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .plate { margin-bottom: 18px; }

.section--alt { background: var(--pine-900); }

/* jagged "cut" divider between sections */
.cut {
  height: 34px;
  width: 100%;
  display: block;
}

/* ---------- services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--pine-950);
  padding: 30px 26px;
  transition: background .15s ease;
}
.section--alt .service-card { background: var(--pine-900); }
.service-card:hover { background: var(--pine-800); }
.service-card svg { width: 30px; height: 30px; stroke: var(--equip); margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; margin: 0; }

/* ---------- process (real sequence -> numbered) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.process-step { position: relative; padding-top: 46px; border-top: 1px solid var(--line); }
.process-step .num {
  position: absolute; top: -1px; left: 0;
  font-family: var(--mono); font-size: 0.8rem; color: var(--equip);
  background: var(--pine-950); padding-right: 10px;
}
.section--alt .process-step .num { background: var(--pine-900); }
.process-step h3 { font-size: 1.05rem; }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-grid a, .gallery-grid figure { margin: 0; overflow: hidden; position: relative; background: var(--pine-900); }
.gallery-grid img {
  width: 100%; height: 230px; object-fit: cover;
  filter: saturate(0.9);
  transition: transform .4s ease, filter .4s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); filter: saturate(1.05); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--pine-800);
  border-top: 4px solid var(--equip);
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin-bottom: 28px; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer.site {
  background: var(--pine-950);
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.foot-grid h4 {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--equip); margin: 0 0 14px;
}
.foot-grid p, .foot-grid a { font-size: 0.92rem; color: var(--bone-dim); text-decoration: none; display: block; margin-bottom: 6px; }
.foot-grid a:hover { color: var(--equip); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--mono); font-size: 0.68rem; color: var(--bone-dim); letter-spacing: 0.05em;
}
@media (max-width: 700px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- inner page hero (shorter) ---------- */
.page-hero {
  position: relative;
  padding: 150px 0 70px;
  background: var(--pine-900);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,23,18,0.5), rgba(11,23,18,0.96));
}
.page-hero .wrap { position: relative; z-index: 2; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

ul.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
ul.check-list li {
  display: flex; gap: 12px; align-items: flex-start; color: var(--bone); font-size: 0.98rem;
}
ul.check-list li::before {
  content: "";
  flex: none;
  width: 9px; height: 9px;
  margin-top: 7px;
  background: var(--equip);
  transform: rotate(45deg);
}

/* contact page */
.contact-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
}
@media (max-width: 800px) { .contact-block { grid-template-columns: 1fr; } }
.contact-line { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.contact-line .plate { font-size: 0.65rem; padding: 0.4em 0.7em; }
.contact-line a, .contact-line span.val { font-family: var(--mono); font-size: 1.05rem; color: var(--bone); text-decoration: none; }
.contact-line a:hover { color: var(--equip); }

/* ---------- contact form ---------- */
.form-card {
  background: var(--pine-900);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.field label .req { color: var(--equip); }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--bone);
  background: var(--pine-950);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 0;
  outline: none;
  transition: border-color .15s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--equip); }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--bone-dim) 50%), linear-gradient(135deg, var(--bone-dim) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
/* honeypot — hidden from sighted users and kept out of tab order,
   but still present in the DOM for bots that auto-fill every field */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-submit-row {
  display: flex; align-items: center; gap: 18px; margin-top: 8px; flex-wrap: wrap;
}
.form-status {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 10px 14px;
  border: 1px solid var(--line);
  display: none;
}
.form-status.is-visible { display: inline-block; }
.form-status.is-success { border-color: var(--equip); color: var(--equip); }
.form-status.is-error { border-color: var(--rust); color: #e08468; }
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
