.contact-page {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(183, 154, 107, 0.08), transparent 28rem),
    var(--black);
}

.contact-header {
  display: flex;
  width: min(calc(100% - 3rem), 1560px);
  min-height: 108px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 1.5rem);
}

.contact-brand img {
  display: block;
  width: clamp(7.5rem, 11vw, 11rem);
  height: auto;
}

.contact-brand > span {
  color: var(--white);
  font-family: var(--condensed);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
}

.contact-brand > span b {
  font-weight: inherit;
}

.contact-brand > span i {
  color: var(--red);
  font-style: normal;
}

.return-link {
  position: relative;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.return-link::after {
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0.35);
  transform-origin: right;
  transition: transform 180ms ease;
}

.return-link:hover::after,
.return-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-introduction {
  display: grid;
  width: min(calc(100% - 3rem), 1440px);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(34rem, 1.1fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 3rem;
  padding-top: 1rem;
}

.panel-heading p {
  margin: 0 0 1.25rem;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.contact-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--condensed);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.78;
  text-transform: uppercase;
}

.contact-lede {
  margin: clamp(2.5rem, 5vw, 4rem) 0 1.4rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.contact-copy > p:not(.contact-lede) {
  max-width: 36rem;
  margin: 0;
  color: #c4c1bb;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.75;
}

.contribution-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  background: var(--gold);
  color: var(--black);
}

.contribution-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 22%;
  height: 6px;
  background: var(--red);
  content: "";
}

.panel-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.panel-heading p {
  color: var(--black);
  opacity: 0.7;
}

.panel-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.03;
}

.contribution-form {
  display: grid;
  gap: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.contribution-form label {
  display: grid;
  min-width: 0;
  gap: 0.65rem;
}

.contribution-form label > span {
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contribution-form label > span b {
  color: var(--red);
}

.contribution-form input,
.contribution-form select,
.contribution-form textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(5, 8, 11, 0.52);
  border-radius: 0;
  background: rgba(239, 237, 231, 0.22);
  color: var(--black);
  font: inherit;
  font-size: 0.95rem;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.contribution-form input,
.contribution-form select {
  min-height: 3.25rem;
  padding: 0 0.9rem;
}

.contribution-form textarea {
  min-height: 11rem;
  padding: 0.9rem;
  line-height: 1.55;
  resize: vertical;
}

.contribution-form input::placeholder,
.contribution-form textarea::placeholder {
  color: rgba(5, 8, 11, 0.58);
}

.contribution-form input:focus,
.contribution-form select:focus,
.contribution-form textarea:focus {
  border-color: var(--red);
  background: rgba(239, 237, 231, 0.46);
  outline: 2px solid transparent;
}

.contribution-form input[type="file"] {
  padding: 0.78rem 0.9rem;
  cursor: pointer;
}

.contribution-form small {
  color: rgba(5, 8, 11, 0.66);
  font-size: 0.7rem;
  line-height: 1.45;
}

.form-assurance {
  margin: 0;
  color: rgba(5, 8, 11, 0.7);
  font-family: var(--serif);
  font-size: 0.85rem;
  line-height: 1.6;
}

.contribution-form button {
  display: inline-flex;
  width: min(100%, 18rem);
  min-height: 3.75rem;
  padding: 0 1.2rem;
  border: 1px solid var(--black);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contribution-form button span {
  color: var(--red);
  font-size: 1.3rem;
}

.contribution-form button:hover,
.contribution-form button:focus-visible {
  background: var(--red);
  color: var(--white);
  outline: none;
  transform: translateY(-2px);
}

.contribution-form button:hover span,
.contribution-form button:focus-visible span {
  color: var(--white);
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-footer {
  width: min(calc(100% - 3rem), 1560px);
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.contact-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.contact-footer p:first-child {
  color: var(--gold);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-footer p + p {
  max-width: 46rem;
  margin-top: 0.75rem;
}

@media (max-width: 1100px) {
  .contact-introduction {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
    gap: 2rem 4rem;
  }

  .contact-copy h1 {
    grid-column: 1 / -1;
  }

  .contact-lede {
    margin-top: 1rem;
  }

}

@media (max-width: 680px) {
  .contact-header,
  .contact-introduction,
  .contact-footer {
    width: min(calc(100% - 2.5rem), 1560px);
  }

  .contact-header {
    min-height: 88px;
  }

  .contact-brand img {
    width: 7rem;
  }

  .contact-brand > span {
    display: none;
  }

  .return-link {
    font-size: 0.55rem;
  }

  .contact-introduction {
    padding: 3rem 0 4rem;
    gap: 3.5rem;
  }

  .contact-copy {
    display: block;
  }

  .contact-copy h1 {
    font-size: clamp(2.8rem, 14vw, 5.25rem);
  }

  .contact-lede {
    margin-top: 2.5rem;
  }

  .contribution-panel {
    width: 100%;
    margin-left: 0;
    padding: 2.4rem 1.25rem 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contribution-form button {
    width: 100%;
  }

}
