.services-detail-link {
  margin-top: 1.5rem;
}

.contact-fallback {
  display: grid;
  gap: 0.25rem;
}

.contact-fallback span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-fallback p {
  color: rgba(255, 255, 255, 0.68);
}

.service-area-status {
  margin-top: -0.15rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
}

.service-area-status[data-state="primary"] {
  border-color: rgba(112, 196, 145, 0.45);
  color: #bfe5cd;
}

.service-area-status[data-state="review"] {
  border-color: rgba(228, 189, 104, 0.5);
  color: #f1d798;
}

.service-area-status[data-state="outside"],
.service-area-status[data-state="invalid"] {
  border-color: rgba(226, 135, 135, 0.5);
  color: #f2b5b5;
}

.request-form [aria-invalid="true"] {
  border-color: #e28b8b;
  box-shadow: 0 0 0 3px rgba(226, 139, 139, 0.18);
}

.request-confirmation {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
  border: 1px solid rgba(228, 189, 104, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.request-confirmation[hidden] {
  display: none;
}

.confirmation-kicker {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.request-confirmation h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.request-confirmation > p:not(.confirmation-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.request-confirmation dl {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.request-confirmation dt,
.request-confirmation dd {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.request-confirmation dt {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.request-confirmation dd {
  color: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

.confirmation-next {
  padding: 0.9rem;
  border-left: 3px solid var(--gold);
  background: rgba(199, 154, 59, 0.08);
}

.confirmation-button {
  justify-self: start;
}

.content-hero {
  padding-block: clamp(4.5rem, 9vw, 7rem);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
}

.content-hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.content-hero p:last-child {
  max-width: 720px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.detail-card {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-card h2,
.detail-card h3 {
  color: var(--navy);
}

.detail-card h2 {
  font-size: 1.55rem;
}

.detail-card p,
.detail-card li {
  color: var(--slate);
}

.detail-card p {
  margin-top: 0.7rem;
}

.detail-card ul {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-left: 1.15rem;
}

.detail-price {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 850;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin-top: 2rem;
  color: var(--navy);
  font-size: 1.45rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--slate);
}

.legal-copy p {
  margin-top: 0.7rem;
}

.legal-copy ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}

@media (max-width: 700px) {
  .request-confirmation {
    padding: 1.25rem;
  }

  .request-confirmation dl {
    grid-template-columns: 1fr;
  }

  .request-confirmation dt {
    padding-bottom: 0.1rem;
    border-bottom: 0;
  }

  .request-confirmation dd {
    padding-top: 0.1rem;
  }

  .confirmation-button {
    width: 100%;
  }

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