.contact-page {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--content-width));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px);
}
.contact-intro {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.contact-kicker {
  margin: 0 0 14px;
  color: #d9f43d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-title {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  letter-spacing: -.065em;
  line-height: .96;
}
.contact-copy {
  max-width: 560px;
  margin: clamp(18px, 2.5vw, 24px) 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.65;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}
.contact-question {
  width: 100%;
  min-height: 190px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #171e19;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.contact-question:hover,
.contact-question:focus-visible {
  border-color: #d9f43d;
  background: #1c251e;
  transform: translateY(-2px);
}
.contact-question-label {
  display: block;
  margin-bottom: 42px;
  color: #d9f43d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-question strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -.03em;
  line-height: 1.12;
}
.contact-form-panel[hidden] {
  display: none;
}
#contactQuestions[hidden] {
  display: none;
}
.contact-form-panel {
  margin-top: clamp(36px, 6vw, 64px);
  padding: 0;
  scroll-margin-top: 96px;
}
.contact-form-header {
  display: block;
  margin-bottom: 28px;
}
.contact-form-back {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #d9f43d;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.contact-form-back:hover {
  text-decoration: underline;
}
.contact-form-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -.05em;
  line-height: 1;
}
.contact-form-header p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: #101511;
  color: #fff;
  font: inherit;
  padding: 12px 13px;
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d9f43d;
  outline: 2px solid rgba(217, 244, 61, .2);
  outline-offset: 1px;
}
.contact-form-field-full,
.contact-form-actions,
.contact-status {
  grid-column: 1 / -1;
}
.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-form-submit {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #d9f43d;
  color: #111;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}
.contact-status {
  min-height: 20px;
  margin: 0;
  color: #d9f43d;
  font-size: 13px;
}
.contact-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #171e19;
}
.contact-card-label {
  display: block;
  margin-bottom: clamp(54px, 8vw, 88px);
  color: #d9f43d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(21px, 2.2vw, 28px);
  letter-spacing: -.035em;
  line-height: 1.08;
}
.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.65;
}
.contact-card a {
  display: inline-block;
  margin-top: 16px;
  color: #d9f43d;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-card-label {
    margin-bottom: 42px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .contact-page {
    width: min(calc(100% - (2 * var(--page-gutter))), var(--content-width));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-submit {
    width: 100%;
  }
}
