@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

:root {
  --white: #fff;
  --cream: #fff9ea;
  --ink: #132629;
  --muted: #596c6f;
  --line: rgba(19, 38, 41, .12);
  --turquoise: #16c7c9;
  --turquoise-dark: #087d82;
  --yellow: #ffd84d;
  --red: #e94335;
  --green: #25a65a;
  --sand: #f4ead2;
  --shadow: 0 18px 44px rgba(19, 38, 41, .13);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, var(--white), var(--cream));
  line-height: 1.6;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.notice {
  background: linear-gradient(90deg, var(--turquoise), var(--yellow), var(--red), var(--green));
  color: var(--ink);
  font-size: .82rem;
  font-weight: 900;
  padding: 7px 12px;
  text-align: center;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: auto;
  min-height: 92px;
  width: min(1180px, calc(100% - 34px));
}

.brand {
  align-items: center;
  display: flex;
  justify-content: center;
}

.brand img {
  filter: drop-shadow(0 8px 12px rgba(19, 38, 41, .1));
  height: auto;
  max-height: 80px;
  object-fit: contain;
  width: 330px;
}

.nav-links {
  align-items: center;
  display: flex;
  font-weight: 800;
  gap: 22px;
}

.nav-links a:hover {
  color: var(--turquoise-dark);
}

.nav-button {
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(19, 38, 41, .16);
  color: white !important;
  padding: 12px 18px;
}

.menu-btn {
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  color: white;
  display: none;
  font: inherit;
  font-weight: 900;
  padding: 10px 14px;
}

.hero {
  align-items: center;
  background: linear-gradient(rgba(255, 255, 255, .76), rgba(255, 255, 255, .82)), url("assets/desert-color-bg.jpg") center/cover;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
  display: grid;
  gap: 42px;
  grid-template-columns: 1.08fr .92fr;
  margin: 34px auto 0;
  min-height: 690px;
  overflow: hidden;
  padding: 62px;
  position: relative;
  width: min(1180px, calc(100% - 34px));
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--turquoise-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.85rem, 6.2vw, 5.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .92;
  max-width: 860px;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.lead {
  color: var(--muted);
  font-size: 1.17rem;
  margin: 24px 0;
  max-width: 660px;
}

.promo-pill,
.discount-box {
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(255, 216, 77, .32);
  color: var(--red);
  display: inline-flex;
  font-weight: 950;
  margin-bottom: 18px;
  padding: 10px 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  padding: 15px 24px;
  transition: .2s ease;
}

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

.btn.red {
  background: var(--red);
  box-shadow: 0 16px 32px rgba(233, 67, 53, .24);
  color: white;
}

.btn.ghost {
  background: white;
  border-color: var(--line);
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  padding: 9px 13px;
}

.hero-panel {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.logo-showcase,
.panel-card,
.service,
.why article,
.steps div,
.quote-form,
.contact-copy,
.reviews article,
.pricing-card {
  background: rgba(255, 255, 255, .95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logo-showcase {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 28px;
  width: 100%;
}

.hero-logo {
  filter: drop-shadow(0 18px 24px rgba(19, 38, 41, .15));
  margin: auto;
  width: min(100%, 540px);
}

.wide-logo {
  aspect-ratio: 1270 / 658;
  object-fit: contain;
}

.panel-card {
  padding: 30px;
}

.badge {
  background: var(--yellow);
  border-radius: 999px;
  color: var(--red);
  display: inline-block;
  font-weight: 950;
  margin-bottom: 14px;
  padding: 8px 12px;
}

.panel-card p {
  color: var(--muted);
  margin-top: 12px;
}

.color-band {
  box-shadow: 0 12px 28px rgba(19, 38, 41, .15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 18px;
  margin: -9px auto 0;
  overflow: hidden;
  position: relative;
  width: min(900px, calc(100% - 34px));
  z-index: 2;
}

.color-band span:nth-child(1) { background: var(--turquoise); }
.color-band span:nth-child(2) { background: var(--yellow); }
.color-band span:nth-child(3) { background: var(--red); }
.color-band span:nth-child(4) { background: var(--green); }

.section {
  margin: 88px auto;
  width: min(1180px, calc(100% - 34px));
}

.section-head {
  margin-bottom: 32px;
  max-width: 790px;
}

.section-head p {
  color: var(--muted);
  margin-top: 10px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.four {
  grid-template-columns: repeat(4, 1fr);
}

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

.service {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.service::before,
.pricing-card::before {
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.service.turquoise::before,
.pricing-card.turquoise::before { background: var(--turquoise); }
.service.yellow::before,
.pricing-card.yellow::before { background: var(--yellow); }
.service.red::before,
.pricing-card.red::before { background: var(--red); }
.service.green::before,
.pricing-card.green::before { background: var(--green); }

.icon {
  color: var(--turquoise-dark);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.service p,
.why p,
.steps p,
.contact-copy p,
.reviews p,
.pricing-card p,
.pricing-card li,
.form-note,
.addon-footnote {
  color: var(--muted);
}

.service p,
.why p,
.steps p,
.contact-copy p,
.reviews p {
  margin-top: 10px;
}

.price {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  display: block;
  margin-top: auto;
  padding: 11px 14px;
  text-align: center;
}

.pricing-section {
  background: #fdf6e5;
  border: 1px solid rgba(19, 38, 41, .08);
  box-shadow: var(--shadow);
  padding: 42px;
}

.pricing-note {
  background: white;
  border-left: 6px solid var(--turquoise);
  color: var(--ink) !important;
  font-weight: 800;
  margin-top: 18px !important;
  padding: 16px 18px;
  text-align: left;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.pricing-card {
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.pricing-top {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pricing-top strong {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  flex: 0 0 auto;
  font-size: .95rem;
  padding: 8px 12px;
}

.basis {
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0 18px;
}

.example {
  background: #f6fbfb;
  border: 1px solid rgba(8, 125, 130, .18);
  color: var(--ink);
  font-weight: 700;
  margin-top: 18px;
  padding: 14px;
}

.addons-section,
.process {
  background: linear-gradient(135deg, #ffffff, #eaffff);
  border: 1px solid rgba(19, 38, 41, .08);
  box-shadow: var(--shadow);
  padding: 42px;
}

.split-feature {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: .85fr 1.15fr;
}

.split-feature > div:first-child {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 32px;
}

.split-feature > div:first-child p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 16px;
}

.reason-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.reason-list article {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  padding: 24px;
}

.reason-list strong {
  font-size: 1.12rem;
  font-weight: 950;
}

.reason-list span {
  color: var(--muted);
  font-weight: 700;
}

.gallery-preview,
.gallery-cta {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px;
}

.gallery-preview .section-head {
  margin-bottom: 0;
}

.gallery-preview .section-head p,
.gallery-cta p {
  color: rgba(255, 255, 255, .78);
}

.gallery-hero {
  align-items: center;
  background: linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .84)), url("assets/desert-color-bg.jpg") center/cover;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr .9fr;
  margin: 34px auto 0;
  padding: 58px;
  width: min(1180px, calc(100% - 34px));
}

.gallery-logo-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px;
}

.gallery-logo-card img {
  aspect-ratio: 1270 / 658;
  object-fit: contain;
  width: 100%;
}

.before-after-section {
  background: linear-gradient(135deg, #ffffff, #eaffff);
  border: 1px solid rgba(19, 38, 41, .08);
  box-shadow: var(--shadow);
  padding: 42px;
}

.compare-wrap {
  aspect-ratio: 16 / 9;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-height: 680px;
  overflow: hidden;
  position: relative;
}

.compare-image {
  align-content: end;
  color: white;
  display: grid;
  gap: 10px;
  inset: 0;
  padding: clamp(22px, 4vw, 46px);
  position: absolute;
}

.compare-image span {
  background: rgba(19, 38, 41, .82);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 950;
  justify-self: start;
  letter-spacing: .12em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.compare-image strong {
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  line-height: 1;
  max-width: 520px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .36);
}

.compare-after {
  background:
    linear-gradient(35deg, rgba(8, 125, 130, .86), rgba(37, 166, 90, .54)),
    url("assets/desert-color-bg.jpg") center/cover;
}

.compare-before {
  background:
    linear-gradient(35deg, rgba(19, 38, 41, .92), rgba(233, 67, 53, .54)),
    url("assets/desert-color-bg.jpg") center/cover;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-line {
  background: white;
  box-shadow: 0 0 0 1px rgba(19, 38, 41, .22), 0 0 24px rgba(0, 0, 0, .25);
  bottom: 0;
  left: var(--position);
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
}

.compare-line::before {
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  color: var(--ink);
  content: "< >";
  display: grid;
  font-size: .9rem;
  font-weight: 950;
  height: 48px;
  left: 50%;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
}

.compare-slider {
  cursor: ew-resize;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.compare-labels {
  color: var(--muted);
  display: flex;
  font-size: .9rem;
  font-weight: 950;
  justify-content: space-between;
  letter-spacing: .08em;
  margin: 12px auto 0;
  max-width: 100%;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.photo-card {
  align-content: end;
  aspect-ratio: 4 / 5;
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: white;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.photo-card::before {
  background: linear-gradient(180deg, rgba(19, 38, 41, .1), rgba(19, 38, 41, .88));
  content: "";
  inset: 0;
  position: absolute;
}

.photo-card span,
.photo-card strong {
  position: relative;
  z-index: 1;
}

.photo-card span {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.photo-card strong {
  font-size: 1.28rem;
  line-height: 1.12;
}

.window-photo { background-image: linear-gradient(rgba(22, 199, 201, .08), rgba(22, 199, 201, .08)), url("assets/desert-color-bg.jpg"); }
.yard-photo { background-image: linear-gradient(rgba(37, 166, 90, .08), rgba(37, 166, 90, .08)), url("assets/desert-color-bg.jpg"); }
.junk-photo { background-image: linear-gradient(rgba(233, 67, 53, .08), rgba(233, 67, 53, .08)), url("assets/desert-color-bg.jpg"); }
.dumpster-photo { background-image: linear-gradient(rgba(255, 216, 77, .08), rgba(255, 216, 77, .08)), url("assets/desert-color-bg.jpg"); }

.addons-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.addons-grid div {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(19, 38, 41, .08);
  display: grid;
  gap: 5px;
  padding: 20px;
}

.addons-grid strong {
  font-size: 1.02rem;
}

.addons-grid span {
  color: var(--turquoise-dark);
  font-weight: 900;
}

.addon-footnote {
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--line);
  font-weight: 700;
  margin-top: 18px;
  padding: 14px 16px;
}

.why article,
.steps div,
.quote-form,
.contact-copy,
.reviews article {
  padding: 26px;
}

.stars {
  color: #f2b300;
  font-size: 1.18rem;
  font-weight: 950;
  margin-bottom: 8px;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.steps span {
  background: var(--yellow);
  border-radius: 50%;
  color: var(--red);
  display: grid;
  font-size: 1.45rem;
  font-weight: 950;
  height: 52px;
  margin-bottom: 16px;
  place-items: center;
  width: 52px;
}

.contact-section {
  align-items: start;
  background: var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: .9fr 1.1fr;
  margin: 96px auto 0;
  padding: 38px;
  width: min(1180px, calc(100% - 34px));
}

.contact-copy {
  background: rgba(255, 255, 255, .96);
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-direct a {
  color: var(--turquoise-dark);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.discount-box {
  margin-bottom: 0;
  margin-top: 22px;
}

.quote-form {
  display: grid;
  gap: 15px;
}

.quote-form label {
  display: grid;
  font-weight: 900;
  gap: 8px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  outline: 0;
  padding: 14px 16px;
  width: 100%;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--turquoise);
}

fieldset {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  padding: 16px;
}

legend {
  font-weight: 950;
  padding: 0 8px;
}

.check {
  align-items: center;
  display: flex !important;
  flex-direction: row;
  font-weight: 800 !important;
  gap: 10px !important;
  grid-template-columns: unset !important;
}

.check input {
  width: auto !important;
}

.form-note {
  font-size: .92rem;
  font-weight: 700;
}

footer {
  align-items: center;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(19, 38, 41, .09);
  color: var(--muted);
  display: flex;
  font-weight: 900;
  gap: 18px;
  justify-content: space-between;
  margin: 34px auto 28px;
  padding: 24px;
  width: min(1180px, calc(100% - 34px));
}

footer img {
  height: auto;
  object-fit: contain;
  width: 245px;
}

@media (max-width: 1020px) {
  .four,
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 950px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    left: 17px;
    padding: 18px;
    position: absolute;
    right: 17px;
    top: 120px;
  }

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

  .nav-button {
    text-align: center;
  }

  .hero,
  .contact-section,
  .pricing-grid,
  .split-feature,
  .gallery-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 34px 22px;
  }

  .three,
  .steps,
  .reason-list {
    grid-template-columns: 1fr;
  }

  .process,
  .contact-section,
  .addons-section,
  .pricing-section,
  .before-after-section {
    padding: 24px;
  }

  .gallery-preview,
  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  fieldset {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand img {
    max-height: 66px;
    width: 200px;
  }

  .nav {
    min-height: 84px;
  }

  .nav-links {
    top: 112px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .btn {
    width: 100%;
  }

  .four,
  .addons-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero {
    padding: 34px 22px;
  }

  .compare-wrap {
    aspect-ratio: 4 / 5;
  }

  .pricing-top {
    display: grid;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer img {
    width: 210px;
  }
}
