/* ============================================================
   Kash's Land Services, LLC — concept
   Palette: paper #FFFFFF · ink #17150F · machine yellow #EFA80B
            mulch wash #F4EDE1 · brush green #44573C · gray #6E675B
   Type:    Big Shoulders (display) · Archivo (body) · IBM Plex Mono (labels)
   ============================================================ */

:root {
  --paper: #ffffff;
  --ink: #17150f;
  --yellow: #efa80b;
  --wash: #f4ede1;
  --green: #44573c;
  --gray: #6e675b;
  --line: #e7e1d6;
  --display: "Big Shoulders", "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --maxw: 78rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

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

/* ---------- eyebrow / mono labels ---------- */
.tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.tag--dark { color: var(--ink); }
.tag .tick { color: var(--yellow); }

/* ---------- header ---------- */
.site-head {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark .apos { color: var(--yellow); }
.wordmark small {
  display: block;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gray);
  margin-top: 0.3rem;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.25rem); }
.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--yellow); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--ink); }
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.35rem;
  border: 2px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--big { font-size: 1.0625rem; padding: 0.9rem 1.75rem; }

@media (max-width: 40rem) {
  .site-head .wrap { flex-wrap: wrap; padding-top: 0.9rem; padding-bottom: 0.9rem; }
  .site-nav { width: 100%; justify-content: flex-start; }
  .site-nav .btn { margin-left: auto; }
}

/* ---------- hero ---------- */
.hero { padding: clamp(3rem, 8vh, 6rem) 0 clamp(2.5rem, 6vh, 4.5rem); }
.hero .tag { margin-bottom: 1.5rem; }
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 12.5vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
}
.hero-title .textured {
  display: block;
  background-image: url("assets/mulch-texture.webp");
  background-size: cover;
  background-position: center 60%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .clean { display: block; }
.hero-title .clean .dot { color: var(--yellow); }
.hero-lede {
  max-width: 34rem;
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: var(--gray);
}
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

/* ---------- full-bleed figure ---------- */
.bleed { margin: 0; padding: clamp(1.5rem, 4vh, 3rem) 0; }
.bleed img { width: 100%; aspect-ratio: 3 / 2; max-height: 32rem; object-fit: cover; object-position: center 45%; }
.bleed figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.8rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

/* ---------- sections ---------- */
.band { padding: clamp(3.5rem, 9vh, 6.5rem) 0; }
.band--wash { background: var(--wash); }
.band--ink { background: var(--ink); color: var(--paper); }

.band-head { margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.band-head .tag { margin-bottom: 0.9rem; }
.band-title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1;
}

/* ---------- services teaser (index) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc {
  background: var(--paper);
  padding: 2rem 1.75rem 2.25rem;
  text-decoration: none;
  transition: background 0.15s ease;
}
.svc:hover { background: var(--wash); }
.svc h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.05;
  margin: 0.9rem 0 0.6rem;
}
.svc p { font-size: 0.9375rem; color: var(--gray); }
.svc .go {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.15rem;
}
@media (max-width: 52rem) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- motto band ---------- */
.motto { text-align: center; }
.motto blockquote {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  line-height: 1.02;
  max-width: 60rem;
  margin: 0 auto;
}
.motto blockquote em { font-style: normal; color: var(--green); }
.motto .tag { margin-top: 1.5rem; }

/* ---------- proof (index) ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: stretch;
}
.proof-grid figure { margin: 0; display: flex; flex-direction: column; }
.proof-grid img { width: 100%; height: 100%; min-height: 16rem; object-fit: cover; flex: 1; }
.proof-grid figcaption { padding-top: 0.7rem; }
@media (max-width: 52rem) { .proof-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .band-title { font-size: clamp(2.4rem, 7vw, 5rem); }
.cta-band p { max-width: 32rem; margin: 1.25rem auto 0; color: var(--wash); opacity: 0.85; }
.cta-band .hero-cta { justify-content: center; margin-top: 2.25rem; }
.cta-band .btn { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.cta-band .btn:hover { background: var(--paper); border-color: var(--paper); }
.cta-band .btn--ghost { background: transparent; border-color: var(--paper); color: var(--paper); }
.cta-band .btn--ghost:hover { background: var(--paper); color: var(--ink); }

/* ---------- services page ---------- */
.page-hero { padding: clamp(3rem, 8vh, 5.5rem) 0 clamp(2rem, 5vh, 3.5rem); }
.page-hero .tag { margin-bottom: 1.2rem; }
.page-title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
}
.page-title .dot { color: var(--yellow); }
.page-lede { max-width: 38rem; margin-top: 1.5rem; font-size: 1.125rem; color: var(--gray); }

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 6vh, 4.5rem) 0;
  border-top: 1px solid var(--line);
}
.svc-row:first-of-type { border-top: 0; }
.svc-row img { width: 100%; height: clamp(15rem, 40vh, 24rem); object-fit: cover; }
.svc-row h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1;
  margin: 0.8rem 0 0.9rem;
}
.svc-row p { color: var(--gray); max-width: 32rem; }
.svc-row p + p { margin-top: 0.8rem; }
.svc-row ul { margin: 1rem 0 0; padding: 0; list-style: none; }
.svc-row li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  border-top: 1px dashed var(--line);
  font-size: 0.9688rem;
  color: var(--ink);
}
.svc-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.65rem;
  height: 0.2rem;
  background: var(--yellow);
}
.svc-row.flip .media { order: 2; }
@media (max-width: 52rem) {
  .svc-row, .svc-row.flip { grid-template-columns: 1fr; }
  .svc-row.flip .media { order: 0; }
}

/* ---------- work page ---------- */
.work-feature {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}
.work-feature img { width: 100%; border: 1px solid var(--line); }
.work-feature h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1;
  margin: 0.8rem 0 0.9rem;
}
.work-feature p { color: var(--gray); max-width: 30rem; }
.work-feature p + p { margin-top: 0.8rem; }
@media (max-width: 52rem) { .work-feature { grid-template-columns: 1fr; } }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2.5rem, 6vh, 4rem);
}
.work-grid figure { margin: 0; }
.work-grid img { width: 100%; height: clamp(16rem, 45vh, 26rem); object-fit: cover; }
.work-grid figcaption { padding-top: 0.7rem; }
.work-grid .tall img { height: clamp(20rem, 60vh, 34rem); }
@media (max-width: 40rem) { .work-grid { grid-template-columns: 1fr; } }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(2rem, 5vh, 3rem);
}
.channel {
  background: var(--paper);
  padding: 2rem 1.75rem 2.25rem;
  text-decoration: none;
  transition: background 0.15s ease;
}
.channel:hover { background: var(--wash); }
.channel svg { width: 2rem; height: 2rem; }
.channel h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 1rem 0 0.35rem;
}
.channel .handle { font-family: var(--mono); font-size: 0.8125rem; color: var(--gray); word-break: break-all; }
.channel .go {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.15rem;
}
.contact-grid--five { grid-template-columns: repeat(5, 1fr); }
.channel--compact { padding: 1.4rem 1.1rem 1.5rem; }
.channel--compact svg { width: 1.5rem; height: 1.5rem; }
.channel--compact h3 { font-size: 1.2rem; margin: 0.7rem 0 0.25rem; }
.channel--compact .handle { font-size: 0.72rem; }
@media (max-width: 64rem) { .contact-grid--five { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 52rem) { .contact-grid { grid-template-columns: 1fr; } .contact-grid--five { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 30rem) { .contact-grid--five { grid-template-columns: 1fr; } }

.estimate-form {
  margin-top: clamp(2rem, 5vh, 3rem);
  max-width: 44rem;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.estimate-form .botcheck { display: none; }
.form-head { margin-bottom: 1.5rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--wide { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.field label .opt { color: var(--gray); letter-spacing: 0.08em; }
.field input,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.7rem 0.85rem;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: #a89f8f; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--yellow);
}
.field textarea { resize: vertical; min-height: 7rem; }
.estimate-form .btn { margin-top: 1.5rem; cursor: pointer; }
.form-note { margin-top: 0.9rem; }
@media (max-width: 40rem) { .form-grid { grid-template-columns: 1fr; } }

.contact-note {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  padding: 1.75rem 2rem;
  background: var(--wash);
  max-width: 44rem;
}
.contact-note .tag { margin-bottom: 0.6rem; }
.contact-note p { color: var(--ink); font-size: 1rem; }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: var(--paper); padding: clamp(3rem, 7vh, 4.5rem) 0 2rem; }
.foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.foot-mark {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 0.95;
}
.foot-mark .apos { color: var(--yellow); }
.foot-mark small {
  display: block;
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}
.foot-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.foot-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
}
.foot-nav a:hover { color: var(--yellow); }
.socials { display: flex; gap: 0.9rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--paper);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.socials a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.socials svg { width: 1.15rem; height: 1.15rem; }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
}
.foot-bottom .tag { color: rgba(255, 255, 255, 0.65); }
