/* Diane Schedule Appointment — Purple redesign v1.1 */
.dhsa-section,
.dhsa-section * {
  box-sizing: border-box;
}

.dhsa-section {
  --dhsa-purple: #8f76a7;
  --dhsa-purple-dark: #6f527f;
  --dhsa-purple-deep: #5e466d;
  --dhsa-purple-soft: #eee8f3;
  --dhsa-text: #302a34;
  --dhsa-muted: #625b67;
  --dhsa-line: rgba(111,82,127,.15);
  --dhsa-cream: #fcfaf8;
  --dhsa-neutral: #f6f3f0;
  --dhsa-white: #ffffff;
  --dhsa-shadow: 0 24px 65px rgba(58,42,66,.12);

  width: 100%;
  padding: 86px 24px;
  background:
    radial-gradient(circle at 8% 8%, rgba(143,118,167,.11), transparent 27%),
    radial-gradient(circle at 92% 88%, rgba(143,118,167,.08), transparent 25%),
    linear-gradient(135deg, #fbf8fb 0%, #fcfaf8 54%, #f4f0f5 100%);
  color: var(--dhsa-text);
  font-family: "DM Sans", Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.dhsa-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dhsa-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 54px;
  align-items: center;
}

.dhsa-copy {
  padding: 8px 0;
}

.dhsa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dhsa-purple);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .70rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 17px;
}

.dhsa-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #b99bc7;
}

.dhsa-section h2 {
  margin: 0;
  max-width: 470px;
  color: var(--dhsa-purple-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 4.2vw, 3.85rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -.04em;
}

.dhsa-intro {
  max-width: 455px;
  margin: 24px 0 0;
  color: #5f5864;
  font-size: .98rem;
  line-height: 1.75;
  font-weight: 500;
}

.dhsa-list {
  display: grid;
  gap: 13px;
  margin-top: 29px;
}

.dhsa-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #514a55;
  font-size: .89rem;
  line-height: 1.5;
  font-weight: 500;
}

.dhsa-dot {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 50%;
  border: 1px solid rgba(143,118,167,.65);
  position: relative;
}

.dhsa-dot::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--dhsa-purple);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.dhsa-form-wrap {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.dhsa-form {
  width: 100%;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(111,82,127,.10);
  border-radius: 26px;
  padding: 38px;
  color: var(--dhsa-text);
  box-shadow: var(--dhsa-shadow);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.dhsa-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 15px;
}

.dhsa-field {
  display: grid;
  gap: 7px;
}

.dhsa-field.dhsa-full {
  grid-column: 1 / -1;
}

.dhsa-field label {
  margin: 0;
  color: var(--dhsa-purple-dark);
  font-size: .69rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.dhsa-field label span {
  color: var(--dhsa-purple);
}

.dhsa-field label em {
  color: #7b7280;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.dhsa-field input,
.dhsa-field textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(111,82,127,.17);
  border-radius: 12px;
  background: #fcfafc;
  padding: 12px 14px;
  color: var(--dhsa-text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.dhsa-field input {
  min-height: 47px;
}

.dhsa-field textarea {
  min-height: 116px;
  resize: vertical;
}

.dhsa-field input:focus,
.dhsa-field textarea:focus {
  border-color: var(--dhsa-purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(143,118,167,.11);
}

.dhsa-field small {
  margin-top: 2px;
  color: #777078;
  font-size: .68rem;
  line-height: 1.45;
}

.dhsa-section .dhsa-form .dhsa-button {
  width: 100%;
  min-height: 50px;
  margin-top: 19px;
  padding: 0 22px;
  border: 1px solid #6f527f !important;
  border-radius: 12px;
  background: #6f527f !important;
  background-color: #6f527f !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .86rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(111,82,127,.20);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.dhsa-section .dhsa-form .dhsa-button:hover,
.dhsa-section .dhsa-form .dhsa-button:focus,
.dhsa-section .dhsa-form .dhsa-button:focus-visible {
  background: #5e466d !important;
  background-color: #5e466d !important;
  border-color: #5e466d !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(94,70,109,.24);
}

.dhsa-arrow {
  font-size: 1.15em;
  transition: transform .2s ease;
}

.dhsa-button:hover .dhsa-arrow {
  transform: translateX(4px);
}

.dhsa-alert {
  margin: 0 0 15px;
  padding: 13px 15px;
  border-radius: 12px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .86rem;
  line-height: 1.5;
}

.dhsa-alert-success {
  color: var(--dhsa-purple-deep);
  border: 1px solid rgba(143,118,167,.20);
  background: var(--dhsa-purple-soft);
}

.dhsa-alert-error {
  color: #6f3f59;
  border: 1px solid rgba(143,118,167,.22);
  background: #faf3f8;
}

.dhsa-hp {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .dhsa-section {
    padding: 72px 22px;
  }

  .dhsa-shell {
    width: min(760px, 100%);
  }

  .dhsa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dhsa-copy {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .dhsa-eyebrow {
    justify-content: center;
  }

  .dhsa-section h2,
  .dhsa-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .dhsa-list {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }

  .dhsa-form-wrap {
    max-width: 590px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .dhsa-section {
    padding: 62px 14px;
  }

  .dhsa-section h2 {
    font-size: clamp(2.35rem, 12vw, 3.05rem);
  }

  .dhsa-intro {
    font-size: .94rem;
  }

  .dhsa-form {
    border-radius: 20px;
    padding: 25px 18px;
  }

  .dhsa-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .dhsa-field.dhsa-full {
    grid-column: auto;
  }

  .dhsa-list {
    text-align: left;
  }

  .dhsa-field textarea {
    min-height: 105px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dhsa-section *,
  .dhsa-section *::before,
  .dhsa-section *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


.dhsa-section .dhsa-form .dhsa-button:active {
  background: #5e466d !important;
  background-color: #5e466d !important;
  border-color: #5e466d !important;
  color: #fff !important;
  transform: translateY(0);
}

.dhsa-section .dhsa-form .dhsa-button:hover .dhsa-arrow,
.dhsa-section .dhsa-form .dhsa-button:focus .dhsa-arrow {
  transform: translateX(4px);
}
