.appointment-page {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: #fff;
}

.appointment-page__header {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem) 1rem;
}

.appointment-page__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.appointment-page__location {
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
}

.appointment-page__location-grid,
.appointment-page__form-section {
  max-width: 78rem;
  margin: 0 auto;
}

.appointment-page__location-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(18rem, 28rem);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.appointment-page__hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
}

.appointment-page__details {
  align-self: center;
}

.appointment-page__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
}

.appointment-page__block {
  margin-bottom: 1.5rem;
}

.appointment-page__block p,
.appointment-page__form-copy p {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.appointment-page__block a {
  color: var(--gold);
  text-decoration: none;
}

.appointment-page__block a:hover {
  text-decoration: underline;
}

.appointment-page__form-section {
  padding: 0 clamp(1.25rem, 4vw, 0rem);
}

.appointment-page__form-copy {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
}

.estila-appointment-form {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.estila-appointment-form .field--name-message textarea {
  min-height: 10rem;
}

.estila-appointment-form .form-actions {
  display: flex;
  justify-content: center;
}

.estila-appointment-form .form-actions .button {
  min-width: 10rem;
}

@media (max-width: 860px) {
  .appointment-page__location-grid {
    grid-template-columns: 1fr;
  }

  .appointment-page__hero img {
    min-height: 18rem;
  }
}
