:root {
  --forest: #24582a;
  --forest-dark: #16391b;
  --leaf: #3c8a43;
  --gold: #f2bd42;
  --paper: #f7f1df;
  --mint: #e7f2dd;
  --white: #ffffff;
  --ink: #152514;
  --text: #32402f;
  --muted: #65705f;
  --line: rgba(36, 88, 42, 0.16);
  --shadow: 0 20px 55px rgba(18, 53, 29, 0.13);
  --radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 20;
  background: var(--forest-dark);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 241, 223, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest-dark);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--forest-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
}

.nav-cta,
.btn-primary,
.btn-secondary,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  font-weight: 900;
  text-decoration: none;
  border: 0;
}

.nav-cta,
.btn-primary,
.btn-submit {
  background: var(--forest);
  color: var(--white);
}

.btn-secondary {
  background: var(--mint);
  color: var(--forest-dark);
}

.hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 57, 28, 0.92), rgba(18, 57, 28, 0.58), rgba(18, 57, 28, 0.16)),
    image-set(url("hero-clean-yard.webp") type("image/webp"), url("hero-clean-yard.jpg") type("image/jpeg")) center right / cover no-repeat;
}

.hero-inner {
  min-height: clamp(500px, 72vh, 740px);
  display: grid;
  align-content: center;
  padding: 6rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  max-width: 850px;
  margin: 0;
  color: inherit;
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-actions .btn-secondary { background: rgba(255, 255, 255, 0.92); }

.quick-strip {
  background: var(--forest-dark);
  color: var(--white);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.quick-grid div {
  background: var(--forest-dark);
  padding: 1rem;
}

.quick-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
}

.quick-grid span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

section { padding: clamp(3rem, 7vw, 5rem) 0; }

.section-kicker {
  color: var(--leaf);
  margin: 0 0 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h2 {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.65rem;
  color: var(--forest-dark);
  font-size: 1.15rem;
  line-height: 1.25;
}

p {
  line-height: 1.7;
}

.intro {
  max-width: 820px;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.content-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.6rem;
}

.card,
.quote-panel,
.side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(18, 53, 29, 0.07);
}

.card,
.side-panel {
  padding: 1.2rem;
}

.card p:first-of-type,
.side-panel p:first-of-type { margin-top: 0; }

.mini-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
  color: var(--text);
  font-size: 0.94rem;
}

.mini-list li {
  position: relative;
  padding-left: 1.35rem;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.nearby-links a,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0.28rem 0.68rem;
  background: var(--mint);
  color: var(--forest-dark);
  font-weight: 900;
  font-size: 0.8rem;
  text-decoration: none;
}

.pill.alt { background: #fff4ce; }

.quote-section {
  background: linear-gradient(180deg, #eef7e9 0%, var(--paper) 100%);
}

.selected-suburb {
  margin: 0.9rem 0 0;
  padding: 1rem;
  background: var(--mint);
  border-radius: var(--radius);
  color: var(--forest-dark);
  font-weight: 900;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.field.full { grid-column: 1 / -1; }

label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.85rem;
  border: 1.5px solid #cbd8cb;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(60, 138, 67, 0.14);
  background: var(--white);
}

input[readonly] {
  color: var(--forest-dark);
  font-weight: 900;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.field-help {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.checkbox-field {
  padding: 0.85rem 0.95rem;
  border: 1.5px solid #cbd8cb;
  border-radius: var(--radius);
  background: var(--paper);
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 0;
  padding: 0;
  margin-top: 0.1rem;
  accent-color: var(--forest);
}

.checkbox-label strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
}

.checkbox-label small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.quote-estimate {
  grid-column: 1 / -1;
  min-width: 0;
  border: 1px solid rgba(47, 125, 50, 0.18);
  background: linear-gradient(135deg, #eef7e9 0%, #fff8e4 100%);
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.quote-estimate-head {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(14rem, 1.1fr);
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.quote-estimate-head > div {
  min-width: 0;
}

.quote-estimate.is-unavailable .quote-estimate-head {
  grid-template-columns: 1fr;
}

.quote-estimate.is-unavailable .quote-estimate-price {
  text-align: left;
}

.quote-estimate-label {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-estimate-copy {
  margin: 0.15rem 0 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.quote-estimate-price {
  color: var(--forest-dark);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  line-height: 1;
  font-weight: 900;
  text-align: right;
  white-space: normal;
  text-wrap: balance;
}

.quote-breakdown {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 0.86rem;
}

.quote-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(47, 125, 50, 0.13);
}

.quote-breakdown strong {
  color: var(--forest);
  text-align: right;
}

.btn-submit {
  grid-column: 1 / -1;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.74;
}

.form-hint {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.phone-link {
  white-space: nowrap;
  font-weight: 900;
  color: var(--forest-dark);
}

footer {
  padding: 2.5rem 0;
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 960px) {
  .quick-grid,
  .content-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  nav {
    min-height: auto;
    padding: 0.85rem 0;
    align-items: flex-start;
  }

  .nav-links { display: none; }

  .hero {
    background:
      linear-gradient(180deg, rgba(18, 57, 28, 0.92), rgba(18, 57, 28, 0.64)),
      image-set(url("hero-clean-yard.webp") type("image/webp"), url("hero-clean-yard.jpg") type("image/jpeg")) center / cover no-repeat;
  }

  .hero-inner { min-height: 560px; }

  .quick-grid,
  form {
    grid-template-columns: 1fr;
  }

  .quote-estimate-head {
    grid-template-columns: 1fr;
  }

  .quote-estimate-price {
    text-align: left;
    white-space: normal;
  }

  .quote-breakdown li {
    flex-direction: column;
    gap: 0.18rem;
  }

  .quote-breakdown strong {
    text-align: left;
  }
}
