:root {
  --green: #8cc51a;
  --green-dark: #5a8f08;
  --black: #080a07;
  --ink: #151811;
  --muted: #5c6255;
  --line: #d9dfcf;
  --paper: #fbfcf7;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(8, 10, 7, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(8, 10, 7, 0.1);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; width: 190px; }
.nav-links { display: flex; justify-content: center; gap: clamp(14px, 3vw, 34px); font-size: 0.92rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.nav-links a, .header-book, .header-call, .btn { text-decoration: none; }
.nav-links a:hover { color: var(--green-dark); }
.header-actions { display: flex; justify-self: end; gap: 10px; align-items: center; }
.header-call, .header-book { padding: 11px 16px; border: 2px solid var(--black); border-radius: 6px; font-weight: 900; white-space: nowrap; }
.header-call { color: var(--white); background: var(--black); }
.header-book { color: var(--black); background: var(--green); }

.hero { position: relative; min-height: calc(100vh - 78px); display: grid; align-items: end; overflow: hidden; color: var(--white); background: #070906; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,9,6,0.94) 0%, rgba(7,9,6,0.86) 48%, rgba(7,9,6,0.68) 100%); }
.hero-media { position: absolute; inset: 0; background: linear-gradient(135deg, #070906 0%, #11160d 56%, #203209 100%); }
.hero-media::before { content: ""; position: absolute; inset: 14% -8% auto 42%; height: 58%; background: rgba(140,197,26,0.18); transform: skewX(-18deg); border-left: 10px solid rgba(140,197,26,0.72); border-right: 2px solid rgba(255,255,255,0.18); }
.hero-media::after { content: "JUNK REMOVAL / CLEANOUTS / HAULING"; position: absolute; right: clamp(22px, 6vw, 88px); bottom: clamp(34px, 8vw, 96px); max-width: 520px; color: rgba(255,255,255,0.09); font-size: clamp(2.2rem, 6vw, 6.4rem); font-weight: 950; line-height: 0.95; text-align: right; }
.hero-content { position: relative; z-index: 1; width: min(760px, calc(100% - 36px)); margin: 0 0 clamp(34px, 8vw, 84px) clamp(18px, 6vw, 76px); }

.eyebrow, .section-kicker { margin: 0 0 12px; color: var(--green); font-size: 0.88rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 16px; font-size: clamp(3.7rem, 12vw, 9.8rem); line-height: 0.86; letter-spacing: 0; text-transform: uppercase; }
h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 5vw, 4.2rem); line-height: 0.98; letter-spacing: 0; text-transform: uppercase; }
h3 { margin-bottom: 8px; font-size: 1.15rem; line-height: 1.15; text-transform: uppercase; }
.hero-copy { max-width: 650px; margin-bottom: 28px; color: rgba(255, 255, 255, 0.9); font-size: clamp(1.08rem, 2vw, 1.45rem); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 13px 20px; border-radius: 6px; border: 2px solid currentColor; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.btn.primary { color: var(--black); background: var(--green); border-color: var(--green); }
.btn.secondary { color: var(--white); background: var(--black); border-color: var(--black); }
.hero .btn.secondary { color: var(--white); background: rgba(0, 0, 0, 0.2); border-color: rgba(255, 255, 255, 0.78); }

.trust-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--black); }
.trust-band div { min-height: 132px; padding: 24px; background: var(--green); }
.trust-band span { display: block; margin-bottom: 8px; color: var(--black); font-size: 1.15rem; font-weight: 950; text-transform: uppercase; }
.trust-band strong { display: block; max-width: 260px; color: rgba(8, 10, 7, 0.78); font-size: 0.98rem; }

.section { padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 76px); }
.split { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: clamp(32px, 7vw, 90px); align-items: start; }
.split > div:first-child p:not(.section-kicker), .process > p:not(.section-kicker), .reviews p, .contact p { color: var(--muted); font-size: 1.08rem; }
.service-grid, .steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.service-grid article, .steps article { min-height: 184px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 30px rgba(8, 10, 7, 0.06); }
.service-grid p, .steps p { margin-bottom: 0; color: var(--muted); }

.booking { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr); gap: clamp(32px, 7vw, 90px); align-items: start; background: var(--white); }
.booking-intro { position: sticky; top: 104px; }
.booking-intro p:not(.section-kicker), .privacy-note, .time-help, .form-status { color: var(--muted); font-size: 1.03rem; }
.privacy-note { padding: 16px; background: #edf4df; border-left: 5px solid var(--green); border-radius: 6px; }
.booking-form { display: grid; gap: 18px; padding: clamp(22px, 4vw, 34px); background: var(--paper); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 14px 40px rgba(8, 10, 7, 0.08); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-row { display: grid; gap: 7px; }
.form-row label, .time-picker legend { font-weight: 900; text-transform: uppercase; }
.form-row input, .form-row textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid #cbd3c0; border-radius: 6px; font: inherit; }
.form-row input:focus, .form-row textarea:focus { outline: 3px solid rgba(140, 197, 26, 0.28); border-color: var(--green-dark); }
.time-picker { display: grid; gap: 12px; padding: 0; border: 0; }
.time-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.time-slot { min-height: 48px; padding: 10px 8px; color: var(--black); background: var(--white); border: 2px solid var(--line); border-radius: 6px; font-weight: 900; cursor: pointer; }
.time-slot:hover:not(:disabled), .time-slot.selected { border-color: var(--green-dark); background: var(--green); }
.time-slot:disabled { color: #6d7168; background: #e3e6dc; border-color: #d0d5c6; cursor: not-allowed; text-decoration: line-through; }
.form-status { min-height: 24px; margin: 0; font-weight: 800; }
.form-status.success { color: var(--green-dark); }
.form-status.error { color: #a32616; }

.process { color: var(--white); background: var(--black); }
.process .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 30px; }
.process .steps article { background: #11140f; border-color: rgba(140, 197, 26, 0.34); }
.steps span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--black); background: var(--green); border-radius: 50%; font-weight: 950; }

.reviews { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: center; background: var(--white); }
.reviews h2, .reviews p { max-width: 760px; }
.contact { background: linear-gradient(180deg, var(--paper), #edf4df); }
.contact-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; max-width: 1120px; margin: 0 auto; padding: clamp(28px, 5vw, 48px); color: var(--white); background: linear-gradient(90deg, rgba(8,10,7,0.95), rgba(8,10,7,0.84)), url("Untitled design (1).png") center / cover; border: 1px solid rgba(140, 197, 26, 0.42); border-radius: 8px; box-shadow: var(--shadow); }
.contact .phone { display: inline-flex; align-items: center; justify-content: center; min-height: 62px; padding: 12px 18px; color: var(--green); font-size: clamp(1.65rem, 4vw, 2.9rem); font-weight: 950; text-decoration: none; white-space: nowrap; }
.site-footer { display: grid; justify-items: center; gap: 10px; padding: 36px 18px; color: var(--white); text-align: center; background: var(--black); }
.site-footer img { width: min(220px, 52vw); border-radius: 8px; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--green); font-weight: 900; }

@media (max-width: 880px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .brand { width: 156px; }
  .trust-band, .split, .booking, .reviews, .contact-panel { grid-template-columns: 1fr; }
  .booking-intro { position: static; }
  .process .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { gap: 10px; padding: 8px 12px; }
  .header-call { padding: 9px 10px; font-size: 0.78rem; }
  .header-book { display: none; }
  .hero { min-height: 690px; }
  .hero::after { background: linear-gradient(0deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.62) 62%, rgba(0,0,0,0.22) 100%); }
  .hero-media { background-position: center top; }
  .hero-content { width: calc(100% - 28px); margin: 0 14px 34px; }
  h1 { font-size: 4.1rem; }
  .hero-actions, .contact-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .trust-band { gap: 0; }
  .trust-band div { min-height: auto; border-bottom: 1px solid rgba(8, 10, 7, 0.2); }
  .service-grid, .form-grid, .time-grid { grid-template-columns: 1fr; }
  .contact .phone { justify-content: flex-start; padding-left: 0; white-space: normal; }
}
