.contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 100vh;
}

.contact__panel {
  /* left matches the topbar's 40px so the copy lines up under the mark; the
     larger top clears the fixed bar and gives the panel room to breathe */
  padding: 130px 56px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  animation: fadeUp .9s cubic-bezier(.2, .7, .2, 1) both;
}

.contact__eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .26em;
  font-weight: 600;
  color: #8a877f;
}

.contact__title {
  margin: 0 0 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 104px);
  line-height: .94;
  letter-spacing: .03em;
}

.contact__lede {
  margin: 22px 0 42px;
  font-size: 14px;
  line-height: 1.75;
  color: #6d6a62;
  max-width: 44ch;
}

.contact__form { display: flex; flex-direction: column; gap: 26px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.field { display: flex; flex-direction: column; gap: 9px; }

.field__label {
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 600;
  color: #8a877f;
}

.field__input {
  background: none;
  border: 0;
  border-bottom: 1px solid #cfccc3;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #161512;
  outline: none;
  resize: none;
  transition: border-color .3s ease;
}

.field__input:focus { border-bottom-color: #161512; }

.contact__submit {
  align-self: flex-start;
  margin-top: 10px;
  background: #161512;
  color: #f5f4f0;
  border: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  padding: 16px 30px;
  cursor: pointer;
  transition: opacity .3s ease;
}

.contact__submit:hover { opacity: .8; }
.contact__submit:disabled { opacity: .45; cursor: default; }

/* honeypot — off-screen rather than display:none, which some bots detect */
.contact__botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact__error {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #8c2f2f;
}

.contact__sent {
  border-top: 1px solid #161512;
  padding-top: 30px;
  animation: fadeIn .5s ease both;
}

.contact__sent-title {
  margin: 0 0 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: .04em;
}

.contact__sent-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6d6a62;
  max-width: 40ch;
}

.contact__direct {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 52px;
  font-size: 12px;
  font-weight: 500;
  color: #6d6a62;
}

.contact__direct a { color: #161512; font-weight: 600; }
.contact__direct a:hover { color: #8a877f; }

.contact__image {
  position: relative;
  overflow: hidden;
  background: #e6e4dd;
  min-height: 420px;
}

.contact__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__image-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 7, 6, .5), transparent 45%);
}

.contact__image-caption {
  position: absolute;
  left: 36px;
  bottom: 34px;
  color: #fff;
}

.contact__image-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: .06em;
  line-height: 1;
}

.contact__image-caption p {
  margin: 6px 0 0;
  font-size: 10px;
  letter-spacing: .24em;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .contact__panel { padding: 140px 20px 60px; max-width: none; }
  .contact__row { grid-template-columns: 1fr; }
  .contact__image { min-height: 320px; }
}
