.highlight {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
}

.highlight-copy {
  display: grid;
  gap: 1rem;
}

.highlight-actions {
  display: inline-flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.highlight-media {
  display: flex;
  justify-content: center;
}

.highlight-media img {
  width: min(440px, 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .highlight {
    grid-template-columns: 1fr;
  }

  .highlight-media {
    order: -1;
  }
}

.service-card {
  display: grid;
  gap: .65rem;
}

.service-note {
  display: grid;
  gap: .75rem;
  text-align: center;
  justify-items: center;
}

.anchor-section {
  scroll-margin-top: calc(var(--header-offset, 72px) + 1rem);
  margin-block: clamp(2.25rem, 5vw, 3rem);
}

.page-heading .hero-actions {
  justify-content: flex-start;
  margin-top: 1rem;
}

.service-detail {
  display: grid;
  gap: 1rem;
}

.service-detail h3 {
  margin: .75rem 0 0;
}

.overview-card {
  display: grid;
  gap: .65rem;
  align-content: start;
}

.overview-card .learn-more {
  font-weight: 600;
  color: var(--accent-strong);
}

.compare-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: .65rem .9rem;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-table th {
  background: var(--surface-alt);
  font-weight: 700;
}

.compare-table td:first-child {
  font-weight: 600;
}

.check {
  color: var(--accent-strong);
  font-weight: 700;
}

.cross {
  color: var(--muted);
}

.price-card {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.price-card .price {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
}

.price-card.featured {
  outline: 2px solid rgba(74, 93, 81, 0.3);
  box-shadow: var(--shadow-medium);
}

.policy-card {
  display: grid;
  gap: .75rem;
}

.about-grid {
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.about-media img {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.faq details {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq details + details {
  margin-top: 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
}

.area-grid {
  align-items: start;
}

.map {
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--surface-alt);
}

.area-sidebar {
  display: grid;
  gap: 1rem;
}

.zip-list {
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: .5rem;
}

.zip-list li {
  margin: .35rem 0;
}

@media (max-width: 900px) {
  .zip-list {
    columns: 1;
  }
}

.features .card {
  text-align: center;
}

.gallery-card {
  display: grid;
  gap: .65rem;
  padding: 0;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-card .gallery-caption {
  display: grid;
  gap: .25rem;
  padding: 0 1.2rem 1.2rem;
}

.gallery-card h3 {
  font-size: 1.05rem;
}

.stat-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.stat-row .stat-number {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--accent-strong);
}

@media (max-width: 700px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

.contact {
  display: grid;
  gap: 1.25rem;
}

.contact-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.contact-method {
  display: grid;
  gap: .35rem;
}

.contact-method .method-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--accent-strong);
}

.contact-method .method-link {
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

.contact-method .method-link:hover,
.contact-method .method-link:focus-visible {
  color: var(--accent-strong);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .4rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.contact-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  justify-content: center;
}

.contact-trust li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
}

.contact-trust li::before {
  content: "✓";
  color: var(--accent-strong);
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.status-page .card + .card {
  margin-top: 1.5rem;
}

.legal .card {
  display: grid;
  gap: 1rem;
}

.testimonials {
  align-items: stretch;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero-bullets li::before {
  content: "•";
  color: var(--accent-strong);
  font-weight: 700;
}
*** End of File
