.bc-contact-page {
  padding: 164px 0 112px;
  background:
    radial-gradient(circle at 92% 6%, rgba(222, 50, 45, 0.08), transparent 24rem),
    #fff;
}

.bc-contact-page .bc-contact-intro {
  max-width: 980px;
  margin-bottom: 64px;
}

.bc-contact-eyebrow,
.bc-contact-form-header > p,
.bc-contact-context-label {
  margin: 0;
  color: #126d38;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.bc-contact-page .bc-contact-intro h1 {
  max-width: 900px;
  margin: 18px 0 0;
  color: #0a0a0a;
  font-family: Inter, sans-serif;
  font-size: clamp(54px, 5.5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.bc-contact-lede {
  max-width: 670px;
  margin: 28px 0 0;
  color: #544f4c;
  font-size: 20px;
  line-height: 1.5;
}

.bc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.bc-contact-context,
.bc-contact-form-card {
  border-radius: 24px;
}

.bc-contact-context {
  position: sticky;
  top: 112px;
  padding: 40px;
  color: #fff;
  background: #10351d;
}

.bc-contact-context-label {
  color: #a6d39a;
}

.bc-contact-paths {
  margin-top: 30px;
}

.bc-contact-path {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.bc-contact-path:last-child {
  padding-bottom: 0;
}

.bc-contact-path-index {
  padding-top: 3px;
  color: #de322d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bc-contact-path h2 {
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.bc-contact-path p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.bc-contact-email {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}

.bc-contact-email span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.bc-contact-email strong {
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.bc-contact-email:hover,
.bc-contact-email:focus-visible {
  color: #a6d39a;
}

.bc-contact-form-card {
  padding: 42px;
  border: 1px solid #e4e1dc;
  background: #f4f3f0;
}

.bc-contact-form-header {
  padding-bottom: 30px;
  border-bottom: 1px solid #d8d4cf;
}

.bc-contact-form-header h2 {
  margin: 12px 0 0;
  color: #0a0a0a;
  font-family: Inter, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.bc-contact-form-card .form-block {
  margin-top: 10px;
}

.bc-contact-form-card .form-wrapper {
  margin-top: 22px;
}

.bc-contact-form-card .text-level {
  color: #201f1d;
  font-size: 14px;
  font-weight: 600;
}

.bc-contact-form-card .input-field-new {
  border-color: #cec9c3;
  color: #0a0a0a;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.bc-contact-form-card .input-field-new:hover {
  border-color: #928b84;
}

.bc-contact-form-card .input-field-new:focus {
  border-color: #126d38;
  box-shadow: 0 0 0 3px rgba(18, 109, 56, 0.12);
}

.bc-contact-form-card .input-field-new::placeholder {
  color: #77716b;
}

.bc-contact-select {
  appearance: auto;
  padding-right: 42px;
  color: #272522;
}

.bc-contact-form-card .input-field-new.text-area.contact-page {
  min-height: 168px;
  resize: vertical;
}

.bc-contact-submit.button.form {
  width: max-content;
  margin-top: 28px;
  background-color: #126d38;
}

.bc-contact-submit .submit-button {
  background-color: #126d38;
  cursor: pointer;
}

.bc-contact-form-card .success-message,
.bc-contact-form-card .error-message {
  border-radius: 12px;
  line-height: 1.5;
}

.bc-contact-form-card .error-message a {
  color: inherit;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .bc-contact-page {
    padding-top: 132px;
  }

  .bc-contact-page .bc-contact-intro {
    margin-bottom: 48px;
  }

  .bc-contact-layout {
    grid-template-columns: 1fr;
  }

  .bc-contact-context {
    position: static;
  }

  .bc-contact-paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .bc-contact-path {
    display: block;
    padding-bottom: 0;
  }

  .bc-contact-path h2 {
    margin-top: 14px;
  }
}

@media screen and (max-width: 767px) {
  .bc-contact-page {
    padding: 112px 0 80px;
  }

  .bc-contact-page .bc-contact-intro {
    margin-bottom: 38px;
  }

  .bc-contact-page .bc-contact-intro h1 {
    font-size: clamp(42px, 10.5vw, 58px);
    line-height: 1.02;
  }

  .bc-contact-lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .bc-contact-context,
  .bc-contact-form-card {
    padding: 28px;
  }

  .bc-contact-paths {
    display: block;
  }

  .bc-contact-form-card .form-wrapper {
    gap: 22px;
  }
}

@media screen and (max-width: 479px) {
  .bc-contact-page {
    padding-top: 98px;
  }

  .bc-contact-page .bc-contact-intro h1 {
    font-size: 44px;
  }

  .bc-contact-context,
  .bc-contact-form-card {
    padding: 22px;
    border-radius: 18px;
  }

  .bc-contact-submit.button.form {
    width: 100%;
  }

  .bc-contact-submit .button-content-block {
    width: 100%;
  }

  .bc-contact-submit .button-inner {
    justify-content: space-between;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bc-contact-form-card .input-field-new {
    transition: none;
  }
}
