:root {
  --max: 680px;
}

nav {
  position: sticky;
}

.dr-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem clamp(1.5rem, 5vw, 2.5rem) 3.5rem;
}

.dr-eyebrow {
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-size: .62rem;
  font-weight: 300;
}

.dr-hero h1 {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.dr-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.dr-hero p {
  color: var(--ink2);
  max-width: 52ch;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
}

.dr-reassurance {
  border-left: 2px solid var(--gold);
  color: var(--ink2);
  background: #c9941a0f;
  padding: .65rem 1rem .65rem 1.25rem;
  font-size: .83rem;
  font-style: italic;
  display: inline-block;
}

.dr-form {
  max-width: var(--max);
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 2.5rem) 6rem;
  display: flex;
}

.dr-row {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  display: grid;
}

.dr-field {
  flex-direction: column;
  gap: .4rem;
  display: flex;
}

.dr-field label {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
  font-size: .58rem;
  font-weight: 300;
}

.req {
  color: var(--gold);
}

.dr-field input, .dr-field textarea {
  border: 1px solid var(--rule);
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  border-radius: 1px;
  outline: none;
  width: 100%;
  padding: .65rem .85rem;
  font-size: .9rem;
  transition: border-color .2s;
}

.dr-field input:focus, .dr-field textarea:focus {
  border-color: var(--gold);
}

.dr-field input::placeholder, .dr-field textarea::placeholder {
  color: var(--ink3);
  font-style: italic;
}

.dr-field textarea {
  resize: vertical;
  min-height: 130px;
}

.dr-submit {
  align-items: center;
  gap: 1.5rem;
  padding-top: .5rem;
  display: flex;
}

.dr-submit button {
  background: var(--gold);
  color: #fff;
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 1px;
  flex-shrink: 0;
  padding: .85rem 2.25rem;
  font-size: .72rem;
  font-weight: 400;
  transition: background .2s, transform .15s;
}

.dr-submit button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.dr-submit button:disabled {
  background: var(--ink3);
  cursor: not-allowed;
  transform: none;
}

.dr-note {
  font-family: var(--mono);
  letter-spacing: .06em;
  color: var(--ink3);
  font-size: .62rem;
  font-weight: 300;
}

.dr-ty {
  max-width: var(--max);
  text-align: center;
  margin: 0 auto;
  padding: 6rem clamp(1.5rem, 5vw, 2.5rem);
  display: none;
}

.dr-ty.visible {
  display: block;
}

.dr-ty-icon {
  background: #c9941a14;
  border: 1px solid #c9941a4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 2rem;
  display: flex;
}

.dr-ty-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.dr-ty h2 {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.dr-ty h2 em {
  color: var(--gold);
  font-style: italic;
}

.dr-ty p {
  color: var(--ink2);
  max-width: 40ch;
  margin: 0 auto 2.5rem;
  font-size: .95rem;
  line-height: 1.75;
}

.dr-ty a {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid #c9941a4d;
  padding-bottom: 2px;
  font-size: .68rem;
  font-weight: 300;
  transition: border-color .2s;
}

.dr-ty a:hover {
  border-color: var(--gold);
}

@media (width <= 640px) {
  .dr-row {
    grid-template-columns: 1fr;
  }

  .dr-submit {
    flex-direction: column;
    align-items: flex-start;
  }

  .dr-submit button {
    width: 100%;
  }
}
/*# sourceMappingURL=demo-request.f352abf8.css.map */
