:root {
  --ink: #0b0b0d;
  --charcoal: #17191d;
  --steel: #5c6470;
  --line: #e8e2d6;
  --paper: #fffaf0;
  --white: #ffffff;
  --gold: #f3b71b;
  --gold-dark: #c98f04;
  --green: #218a55;
  --shadow: 0 24px 70px rgba(10, 10, 10, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
}

.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(11, 11, 13, 0.1);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.brand span {
  display: block;
  font-size: 1.1rem;
}

.brand small {
  display: block;
  color: var(--steel);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.google-review {
  min-width: 44px;
  height: 44px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
  margin-left: 14px;
}

.google-review:hover {
  background: rgba(11, 11, 13, 0.08);
  color: inherit;
}

.google-g {
  width: 30px;
  height: 30px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%234285F4' d='M44.5 20H24v8.5h11.8C34.7 33.9 30.1 37 24 37c-7.2 0-13-5.8-13-13s5.8-13 13-13c3.1 0 5.9 1.1 8.1 3.1l6-6C34.4 4.7 29.5 2.5 24 2.5 12.1 2.5 2.5 12.1 2.5 24S12.1 45.5 24 45.5c12.4 0 21-8.7 21-20.9 0-1.5-.2-3-.5-4.6z'/%3E%3Cpath fill='%2334A853' d='M6.3 14.1l7 5.1C15.2 14.4 19.3 11 24 11c3.1 0 5.9 1.1 8.1 3.1l6-6C34.4 4.7 29.5 2.5 24 2.5c-7.8 0-14.6 4.4-17.7 11.6z'/%3E%3Cpath fill='%23FBBC05' d='M24 45.5c5.9 0 10.9-1.9 14.6-5.3l-6.8-5.6C29.8 36.1 27.2 37 24 37c-6 0-11.1-4.1-12.7-9.6l-7.1 5.5C7.2 40.3 14.7 45.5 24 45.5z'/%3E%3Cpath fill='%23EA4335' d='M11.3 27.4c-.4-1.1-.6-2.2-.6-3.4s.2-2.3.6-3.4l-7-5.5C3.1 17.8 2.5 20.8 2.5 24s.6 6.2 1.8 8.9l7-5.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}

.google-g {
  font-weight: 900;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 1.45rem;
  cursor: pointer;
}

.nav-toggle::before {
  content: "\2630";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--gold);
}

.button.light {
  background: var(--white);
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.76) 38%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.08) 100%),
    url("come-get-it-hero-junk-removal.png") center / cover no-repeat,
    var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 54px;
  padding: 62px 0;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.86rem;
}

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

h1 {
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  line-height: 0.94;
  margin-bottom: 22px;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  margin-bottom: 16px;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 620px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-card {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.hero-photo-space {
  min-height: 500px;
}

.logo-stage {
  width: min(440px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  padding: 12px;
  box-shadow: var(--shadow);
}

.logo-stage img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.quick-panel {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: min(310px, 78vw);
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--gold);
  padding: 20px;
}

.quick-panel strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.1;
}

.quick-panel span {
  color: var(--steel);
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

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

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--steel);
  font-size: 1.05rem;
}

.dark .section-head p,
.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.service-card,
.price-card,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(11, 11, 13, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.08);
}

.card strong,
.service-card strong {
  color: var(--gold-dark);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.image-band {
  min-height: 430px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  background: url("why-customers-call.jpg") center / cover no-repeat;
  box-shadow: 10px 10px 0 var(--ink);
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(11, 11, 13, 0.12);
  position: relative;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.photo-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}

.service-list {
  columns: 2;
  padding-left: 20px;
}

.service-list li {
  break-inside: avoid;
  margin-bottom: 9px;
  font-weight: 700;
}

.price-card.featured {
  border: 3px solid var(--gold);
  box-shadow: 9px 9px 0 var(--ink);
}

.price {
  display: block;
  font-size: 2.15rem;
  font-weight: 900;
  margin: 14px 0 4px;
}

.note {
  color: var(--steel);
  font-size: 0.94rem;
}

.cta {
  background: var(--gold);
  color: var(--ink);
  padding: 62px 0;
}

.cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta h2 {
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card a {
  color: var(--ink);
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid rgba(11, 11, 13, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 52px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--gold);
}

.footer-list {
  padding: 0;
  list-style: none;
  margin: 0;
}

.footer-list li {
  margin-bottom: 9px;
}

.copyright {
  width: min(1160px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 4px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 12px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 7px 7px 0 var(--gold);
  }

  .google-review {
    margin-left: 0;
    justify-self: flex-end;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .hero-inner,
  .split,
  .contact-grid,
  .grid.two,
  .grid.three,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    gap: 22px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 52%, rgba(0, 0, 0, 0.35) 100%),
      url("come-get-it-hero-junk-removal.png") center / cover no-repeat,
      var(--ink);
  }

  .hero-card {
    min-height: 380px;
  }

  .hero-photo-space {
    min-height: 260px;
  }

  .quick-panel {
    position: static;
    margin-top: -36px;
    justify-self: center;
  }

  .cta .section-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .service-list {
    columns: 1;
  }
}

@media (max-width: 540px) {
  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 68px;
    height: 68px;
  }

  .section {
    padding: 58px 0;
  }

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

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
