:root {
  --ink: #171a17;
  --muted: #63695f;
  --paper: #f7f4ed;
  --white: #fffdf8;
  --line: rgba(23, 26, 23, 0.14);
  --coal: #10130f;
  --green: #2e6b4f;
  --acid: #d9f060;
  --rust: #b6512f;
  --shadow: 0 24px 70px rgba(23, 26, 23, 0.18);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 26, 23, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 26, 23, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, sans-serif;
  line-height: 1.45;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  color: var(--ink);
  background: rgba(247, 244, 237, 0.94);
  box-shadow: 0 10px 36px rgba(23, 26, 23, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo-frame {
  display: block;
  position: relative;
  width: clamp(160px, 17vw, 220px);
  aspect-ratio: 637 / 247;
}

.brand-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
body.nav-open .site-header .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
body.nav-open .site-header .brand-logo-dark {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a,
.contact-menu summary {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-menu {
  position: relative;
}

.contact-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
}

.contact-menu summary::-webkit-details-marker {
  display: none;
}

.contact-menu summary::before {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.contact-menu summary::after {
  content: "+";
  font-size: 0.85rem;
  line-height: 1;
}

.contact-menu[open] summary::before,
.contact-menu summary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-menu[open] summary::after {
  content: "-";
}

.contact-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 24;
  display: grid;
  gap: 6px;
  min-width: 222px;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-dropdown a {
  display: block;
  padding: 10px 12px;
  background: #f2efe6;
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-dropdown a::after {
  display: none;
}

.nav-cta {
  padding: 10px 15px;
  color: var(--acid);
  background: rgba(217, 240, 96, 0.1);
  border: 1px solid rgba(217, 240, 96, 0.78);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(217, 240, 96, 0.18);
}

.contact-menu.nav-cta summary::before {
  display: none;
}

.site-header.is-scrolled .nav-cta,
body.nav-open .site-header .nav-cta {
  color: var(--green);
  background: rgba(46, 107, 79, 0.08);
  border-color: rgba(46, 107, 79, 0.52);
  box-shadow: 0 0 20px rgba(46, 107, 79, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 64px) 42px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 10, 8, 0.92), rgba(8, 10, 8, 0.7) 31%, rgba(8, 10, 8, 0.24) 62%, rgba(8, 10, 8, 0.1)),
    linear-gradient(0deg, rgba(8, 10, 8, 0.52), transparent 38%),
    url("assets/hero-junk-removal.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.final-cta .eyebrow {
  color: var(--acid);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(3.15rem, 8vw, 7.4rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 4.4vw, 4.5rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--coal);
  background: var(--acid);
  box-shadow: 0 16px 34px rgba(217, 240, 96, 0.25);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.34);
}

.button-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--white);
  background: var(--coal);
  border-radius: 50%;
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin: 44px 0 0;
  padding: 1px;
  background: rgba(255, 253, 248, 0.26);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats div {
  padding: 16px;
  background: rgba(8, 10, 8, 0.48);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin-bottom: 5px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  width: min(1380px, calc(100% - 24px));
  margin: -28px auto 0;
  padding: clamp(26px, 3vw, 36px);
  position: relative;
  z-index: 3;
  scroll-margin-top: clamp(120px, 22vh, 190px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading.compact h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.section-heading.compact {
  margin: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.quote-form > label:not(.address-label) {
  grid-column: span 4;
}

.address-label,
.quote-actions {
  grid-column: span 6;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

select,
input {
  min-width: 0;
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  color: var(--ink);
  background: #f2efe6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
}

select:focus,
input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 107, 79, 0.16);
}

.address-field {
  position: relative;
  display: block;
}

.address-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 18;
  display: none;
  max-height: 230px;
  padding: 8px;
  overflow-y: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-transform: none;
}

.address-suggestions.is-open {
  display: grid;
  gap: 6px;
}

.address-suggestion,
.address-suggestion-status {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: #f2efe6;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  text-transform: none;
}

.address-suggestion {
  cursor: pointer;
}

.address-suggestion:hover,
.address-suggestion:focus {
  border-color: var(--green);
  outline: none;
}

.address-suggestion-status {
  color: var(--muted);
}

.pac-container {
  z-index: 10000;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: ui-sans-serif, "Avenir Next", "Segoe UI", Helvetica, sans-serif;
  overflow: hidden;
}

.pac-item {
  padding: 10px 12px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.35;
}

.pac-item-query {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.quote-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quote-actions .button {
  min-height: 58px;
  padding-inline: 16px;
}

.quote-actions .button.secondary {
  color: var(--ink);
  background: #f2efe6;
  border-color: var(--line);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-card,
.proof-grid article,
.steps-list article,
.gallery-slot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.8);
}

.price-card {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.price-card.featured {
  color: var(--white);
  background: var(--green);
  border-color: transparent;
  box-shadow: 0 18px 50px rgba(46, 107, 79, 0.24);
}

.price-card p {
  color: var(--muted);
}

.price-card.featured p {
  color: rgba(255, 253, 248, 0.78);
}

.price-card strong {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  line-height: 1;
}

.price-size {
  width: fit-content;
  margin-bottom: 24px;
  padding: 6px 9px;
  color: var(--rust);
  background: rgba(182, 81, 47, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured .price-size {
  color: var(--coal);
  background: var(--acid);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 84px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0 0;
}

.sticky-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.steps-list {
  display: grid;
  gap: 14px;
}

.steps-list article {
  min-height: 170px;
  padding: 22px;
}

.steps-list span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 0.8;
}

.steps-list p,
.proof-grid p,
.gallery-slot p {
  color: var(--muted);
}

.service-strip {
  display: flex;
  width: 100%;
  gap: 1px;
  margin: clamp(72px, 10vw, 120px) 0 0;
  color: var(--white);
  background: var(--coal);
  overflow-x: auto;
}

.service-strip span {
  flex: 0 0 auto;
  padding: 18px clamp(18px, 3vw, 38px);
  background: rgba(255, 253, 248, 0.06);
  font-weight: 900;
  white-space: nowrap;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.proof-group {
  display: grid;
  gap: 14px;
}

.proof-standard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-label {
  grid-column: 1 / -1;
  width: fit-content;
  padding: 6px 9px;
  color: var(--coal);
  background: var(--acid);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid article {
  padding: 20px;
  min-height: 168px;
}

.proof-standard article {
  border-color: rgba(217, 240, 96, 0.76);
  box-shadow: 0 0 0 1px rgba(217, 240, 96, 0.18), 0 16px 34px rgba(217, 240, 96, 0.16);
}

.proof-addons .proof-label {
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(46, 107, 79, 0.68);
  box-shadow: 0 0 24px rgba(46, 107, 79, 0.32);
}

.proof-addons article {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--green);
  border-color: rgba(46, 107, 79, 0.78);
  box-shadow: 0 0 0 1px rgba(46, 107, 79, 0.28), 0 20px 52px rgba(46, 107, 79, 0.34);
}

.proof-addons article p {
  color: rgba(255, 253, 248, 0.78);
}

.addon-price {
  width: fit-content;
  margin-top: auto;
  padding: 8px 11px;
  color: var(--coal);
  background: var(--acid);
  border-radius: 999px;
  font-size: 1.05rem;
  line-height: 1;
}

.gallery-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-slot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 1px;
  overflow: hidden;
  background: var(--line);
}

.gallery-slot h3 {
  grid-column: 1 / -1;
  margin: 0;
  padding: 15px 16px;
  background: var(--white);
}

.slot {
  min-height: 210px;
  display: grid;
  place-items: center;
  color: rgba(23, 26, 23, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(23, 26, 23, 0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(23, 26, 23, 0.08) 25%, transparent 25%),
    #ede8da;
  background-size: 24px 24px;
}

.slot.after {
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(46, 107, 79, 0.12) 25%, transparent 25%),
    linear-gradient(225deg, rgba(46, 107, 79, 0.12) 25%, transparent 25%),
    #f4f2e9;
  background-size: 24px 24px;
}

.final-cta {
  flex-direction: column;
  justify-content: center;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(72px, 10vw, 128px) auto 0;
  min-height: 390px;
  padding: clamp(34px, 6vw, 72px);
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 240, 96, 0.2), transparent 32%),
    linear-gradient(135deg, var(--green), var(--coal));
  border-radius: var(--radius);
}

.final-cta h2 {
  margin-bottom: 4px;
  max-width: 760px;
}

.final-cta p {
  max-width: 600px;
  color: rgba(255, 253, 248, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 90px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
}

.mobile-quote-bar {
  display: none;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 94px 18px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
  }

  .contact-menu {
    border-bottom: 0;
  }

  .contact-menu.nav-cta {
    padding: 0;
  }

  .contact-menu summary {
    display: flex;
    justify-content: space-between;
    padding: 14px;
  }

  .contact-menu summary::before {
    display: none;
  }

  .contact-dropdown {
    position: static;
    min-width: 0;
    margin: 0 0 10px;
    box-shadow: none;
  }

  .site-nav a:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .quote-band,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .quote-form > label:not(.address-label) {
    grid-column: auto;
  }

  .address-label {
    grid-column: 1 / -1;
  }

  .quote-actions {
    grid-column: 1 / -1;
  }

  .pricing-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-logo-frame {
    width: clamp(136px, 43vw, 164px);
  }

  .proof-standard {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 90svh;
    padding: 116px 18px 30px;
  }

  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(8, 10, 8, 0.94), rgba(8, 10, 8, 0.7) 52%, rgba(8, 10, 8, 0.18)),
      linear-gradient(0deg, rgba(8, 10, 8, 0.5), transparent 44%),
      url("assets/hero-junk-removal.png");
    background-position: 58% center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .quote-band {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 22px;
  }

  .quote-form,
  .pricing-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

  .section,
  .split-section,
  .gallery-section,
  .final-cta,
  .site-footer {
    width: calc(100% - 24px);
  }

  .price-card {
    min-height: 210px;
  }

  .slot {
    min-height: 170px;
  }

  .site-footer {
    display: block;
    padding-bottom: 112px;
  }

  .mobile-quote-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 18;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.show-mobile-quote .mobile-quote-bar {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-quote-bar .button {
    width: 100%;
  }
}
