:root {
  --ink: #17211d;
  --muted: #637068;
  --line: #d9ded8;
  --soft: #f4f6f1;
  --paper: #fffdf8;
  --brand: #215b4b;
  --brand-strong: #123d34;
  --accent: #b45f3c;
  --gold: #d3a84d;
  --shadow: 0 18px 50px rgba(22, 32, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
select,
input {
  font: inherit;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 222, 216, 0.8);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: white;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.services-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.services-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.services-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 240px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

.services-dropdown a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 750;
}

.services-dropdown a:hover,
.services-dropdown a:focus-visible {
  background: var(--soft);
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.outline-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
  white-space: nowrap;
}

.outline-button {
  background: white;
  color: var(--ink);
}

.primary-button {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
  font-weight: 700;
}

.search-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 580px);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(32px, 7vw, 80px) clamp(18px, 4vw, 56px) 30px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.94)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80") center/cover;
  border-bottom: 1px solid var(--line);
}

.quick-services {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  max-width: 1240px;
  width: 100%;
  margin-top: 12px;
}

.quick-service-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  min-height: 138px;
  height: 100%;
  padding: 18px;
  border: 1px solid rgba(217, 222, 216, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(23, 33, 29, 0.1);
}

.quick-service-card strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.1;
}

.quick-service-card small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.quick-label {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  max-width: 13ch;
  font-size: clamp(2.45rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(217, 222, 216, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 46px rgba(23, 33, 29, 0.12);
}

.search-panel label {
  display: grid;
  gap: 6px;
}

.search-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.search-panel select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

.content-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 32px) 56px;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-title h2,
.contact-band h2 {
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  letter-spacing: 0;
}

.section-title p,
.contact-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.count-pill {
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: white;
  font-size: 0.88rem;
  font-weight: 700;
}

.category-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 22px rgba(23, 33, 29, 0.06);
}

.category-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.category-tabs button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
}

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

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.08);
}

.listing-card[hidden] {
  display: none;
}

.card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.listing-card:hover .card-image img {
  transform: scale(1.035);
}

.save-button,
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 222, 216, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.save-button {
  position: absolute;
  top: 12px;
  right: 12px;
}

.icon-button svg,
.save-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(18, 61, 52, 0.92);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}

.card-body {
  display: grid;
  gap: 12px;
  padding: 15px;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.card-title-row h3 {
  margin: 0;
  font-size: 1.04rem;
}

.rating {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.address {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-row span {
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--soft);
  color: #435149;
  font-size: 0.82rem;
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.price-row strong {
  font-size: 1.08rem;
}

.view-link {
  border: 0;
  background: transparent;
  color: var(--brand);
  cursor: pointer;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
  padding: 44px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #f7f4ee;
}

.service-detail.reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  background: var(--paper);
}

.service-detail.reverse .service-copy {
  order: 2;
}

.service-copy {
  max-width: 560px;
}

.service-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.service-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.service-copy .primary-button {
  margin-top: 8px;
}

.service-photos {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}

.service-photos img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.1);
}

.service-photos img:nth-child(2) {
  min-height: 220px;
  align-self: end;
}

.service-page-hero {
  display: grid;
  align-items: end;
  min-height: min(620px, calc(100vh - 76px));
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 72px);
  color: white;
  background-position: center;
  background-size: cover;
}

.furniture-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 22, 19, 0.78), rgba(14, 22, 19, 0.26)),
    url("assets/services/furniture-pickup.png");
}

.outdoor-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 22, 19, 0.78), rgba(14, 22, 19, 0.24)),
    url("assets/services/snow-plow-snowblower.png");
}

.garbage-hero {
  background-image:
    linear-gradient(90deg, rgba(14, 22, 19, 0.78), rgba(14, 22, 19, 0.28)),
    url("https://images.unsplash.com/photo-1591193686104-fddba4d32d31?auto=format&fit=crop&w=1800&q=80");
}

.service-page-hero > div {
  max-width: 760px;
}

.service-page-hero .eyebrow {
  color: #ffdca4;
}

.service-page-hero h1 {
  max-width: 12ch;
  margin-bottom: 18px;
}

.service-page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.service-page-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: 46px clamp(18px, 5vw, 72px) 58px;
}

.service-page-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.service-page-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.feature-list span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff5e7;
  color: #76512e;
  font-size: 0.86rem;
  font-weight: 800;
}

.service-stack {
  display: grid;
  gap: 22px;
  padding: 46px clamp(18px, 5vw, 72px) 58px;
}

.service-stack > section {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.06);
}

.service-stack h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.08;
}

.service-stack p,
.service-stack li {
  color: var(--muted);
  line-height: 1.65;
}

.service-stack ul,
.service-stack ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

.price-callout {
  display: inline-flex;
  margin: 8px 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff5e7;
  color: #76512e;
  font-weight: 850;
}

.steps-grid,
.audience-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.step-card,
.audience-card,
.faq-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.step-card strong,
.audience-card strong,
.faq-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.service-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.service-gallery img {
  width: 100%;
  min-height: 260px;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.1);
}

.service-gallery img:first-child {
  grid-row: span 2;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 4vw, 56px) 42px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2eb;
}

.contact-band address {
  margin-top: 12px;
  color: #435149;
  font-style: normal;
  font-weight: 750;
  line-height: 1.45;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 20px;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 14, 0.56);
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  width: min(1120px, 100%);
  max-height: min(860px, calc(100vh - 40px));
  overflow: auto;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
}

.modal-gallery {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  gap: 10px;
  padding: 18px;
  background: var(--soft);
}

.modal-gallery > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.thumb-row button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  cursor: pointer;
}

.thumb-row button.is-active {
  border-color: var(--brand);
}

.thumb-row img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.modal-body {
  padding: 30px;
}

.modal-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.modal-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.favorite-large {
  flex: 0 0 auto;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  font-size: 1.55rem;
}

.price-line span {
  color: var(--muted);
}

.description {
  color: #38443d;
  line-height: 1.65;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.detail-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.detail-grid dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-grid dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.amenities h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.amenities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.amenities li {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff5e7;
  color: #76512e;
  font-size: 0.86rem;
  font-weight: 800;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: white;
  text-align: center;
}

.site-view-counter {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(18, 38, 63, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.site-view-counter svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-view-counter strong {
  min-width: 24px;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 980px) {
  .search-band {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 16ch;
  }

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

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

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-copy {
    order: 0;
  }

  .service-page-section {
    grid-template-columns: 1fr;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-gallery {
    grid-template-rows: auto auto;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .top-actions a:not(.outline-button) {
    display: none;
  }

  .services-menu {
    display: none;
  }

  .search-panel,
  .listing-grid,
  .quick-services,
  .service-photos,
  .service-gallery,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .audience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-page-hero h1 {
    max-width: 14ch;
  }

  .service-gallery img:first-child {
    grid-row: auto;
  }

  .service-photos img,
  .service-photos img:nth-child(2) {
    min-height: 220px;
  }

  .section-title,
  .contact-band,
  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .modal {
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-gallery,
  .modal-body {
    padding: 14px;
  }

  .modal-gallery > img {
    min-height: 260px;
  }
}
