.page-contact {
  background: #0a0a0a;
  color: #fff;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-height);
  padding: 84px 28px 118px;
  background:
    radial-gradient(circle at 12% 15%, rgba(200, 161, 74, .15), transparent 28%),
    #0a0a0a;
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(240, 213, 138, .12);
  border-radius: 50%;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--gold2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}

.contact-intro h1 {
  max-width: 650px;
  margin: 24px 0 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 7vw, 100px);
  line-height: .88;
  letter-spacing: -.06em;
}

.contact-intro > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.75;
}

.contact-signature {
  margin-top: 28px;
  color: var(--gold2);
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-style: italic;
}

.contact-portrait {
  position: relative;
  height: 570px;
  overflow: hidden;
  border: 1px solid rgba(240, 213, 138, .25);
  background: #181818;
  box-shadow: var(--shadow);
}

.contact-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .68), transparent 45%);
}

.contact-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.portrait-note {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.portrait-note span {
  color: var(--gold2);
}

.contact-section {
  padding: 0 28px 100px;
  background: var(--cream);
  color: #111;
}

.contact-layout {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: start;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .17);
}

.contact-aside {
  min-height: 100%;
  padding: 54px 42px;
  background: #111;
  color: #fff;
}

.contact-aside h2 {
  margin: 20px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  line-height: .95;
  letter-spacing: -.045em;
}

.contact-aside > p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.7;
}

.contact-steps {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-steps li > span {
  padding-top: 3px;
  color: var(--gold2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.contact-steps b {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.contact-steps p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.55;
}

.contact-form-card {
  padding: 56px;
  background: #fff;
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading > span {
  color: #9a7421;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 8px 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -.045em;
}

.form-heading p {
  margin: 0;
  color: #766d64;
  font-size: 13px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 22px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-wide,
.form-consent,
.form-submit {
  grid-column: 1 / -1;
}

.form-field label {
  color: #3f3934;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfc5b8;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #111;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input,
.form-field select {
  height: 48px;
}

.form-field textarea {
  min-height: 132px;
  padding: 13px 0;
  resize: vertical;
  line-height: 1.55;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #9a7421;
  box-shadow: 0 1px 0 #9a7421;
}

.form-field textarea::placeholder {
  color: #9b9289;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #70675f;
  font-size: 12px;
  line-height: 1.5;
}

.form-consent input {
  margin: 2px 0 0;
  accent-color: #9a7421;
}

.form-submit {
  padding-top: 5px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit button,
.submission-return {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.form-submit button:hover,
.submission-return:hover {
  background: #2a241d;
  transform: translateY(-2px);
}

.form-submit small {
  max-width: 280px;
  color: #8b8279;
  font-size: 11px;
  line-height: 1.45;
}

.submission-page {
  min-height: calc(100vh - var(--nav-height) - var(--topbar-height));
  padding: 90px 28px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(200, 161, 74, .16), transparent 34%),
    #0a0a0a;
}

.submission-card {
  width: min(680px, 100%);
  padding: 64px;
  border: 1px solid rgba(240, 213, 138, .28);
  background: #111;
  text-align: center;
  box-shadow: var(--shadow);
}

.submission-card .contact-eyebrow::before {
  display: none;
}

.submission-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(240, 213, 138, .55);
  border-radius: 50%;
  color: var(--gold2);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
}

.submission-card h1 {
  margin: 18px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 7vw, 68px);
  line-height: .95;
  letter-spacing: -.05em;
}

.submission-card > p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, .66);
  line-height: 1.7;
}

.submission-errors {
  margin: 0 auto 28px;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  list-style: none;
  line-height: 1.8;
}

.submission-return {
  background: var(--gold2);
  color: #111;
}

@media (max-width: 960px) {
  .contact-hero-inner {
    gap: 38px;
  }

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

  .contact-aside {
    padding: 46px 30px;
  }

  .contact-form-card {
    padding: 46px 38px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    padding: 62px 22px 88px;
  }

  .contact-hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-intro h1 {
    font-size: clamp(56px, 16vw, 78px);
  }

  .contact-portrait {
    height: 480px;
  }

  .contact-section {
    padding: 0 18px 70px;
  }

  .contact-layout {
    margin-top: -32px;
  }

  .contact-aside {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .contact-portrait {
    height: 410px;
  }

  .contact-form-card {
    padding: 38px 24px;
  }

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

  .form-field-wide,
  .form-consent,
  .form-submit {
    grid-column: auto;
  }

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

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

  .submission-page {
    padding: 58px 18px;
  }

  .submission-card {
    padding: 46px 24px;
  }
}
