/* Page composition ownership boundary.
   This file owns page or page-family composition only.
   Reusable shared primitives belong in editorial-base.css.
   Do not add legacy fallback systems here. */

/* ===== contact.html ===== */
body.page-contact .contact-editorial {
  min-height: 100vh;
  padding: calc(72px + 16px) 24px clamp(64px, 8vw, 104px);
  background: var(--cream);
}

body.page-contact .contact-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

body.page-contact .contact-composition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 0.38fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
  padding: 0;
}

body.page-contact #contact-title {
  max-width: none;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.75rem, 5.2vw, 4.6rem);
  line-height: 0.92;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.052em;
  white-space: nowrap;
}

body.page-contact .intro-copy {
  max-width: 570px;
  margin: 20px 0 0;
  font-size: clamp(1.02rem, 1.55vw, 1.15rem);
  line-height: 1.72;
  color: var(--muted);
}

body.page-contact .contact-aside {
  position: sticky;
  top: 100px;
  padding-top: 6px;
  text-align: right;
}

body.page-contact .aside-heading {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: -0.036em;
}

body.page-contact .aside-copy {
  max-width: 340px;
  margin: 0 0 30px auto;
  color: var(--muted);
  line-height: 1.7;
}

body.page-contact .direct-stack {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

body.page-contact .direct-item {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(12, 26, 61, 0.13);
}

body.page-contact .direct-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 850;
}

body.page-contact .direct-value {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 850;
  text-decoration: none;
}

body.page-contact .direct-value:hover,
body.page-contact .direct-value:focus-visible {
  color: var(--gold);
}

body.page-contact .identity-block {
  margin-top: 8px;
  color: rgba(26, 26, 46, 0.64);
  font-size: 0.92rem;
  line-height: 1.72;
}

body.page-contact .identity-block p {
  margin: 0 0 12px;
}

body.page-contact .identity-block strong {
  color: var(--text);
  font-weight: 850;
}

body.page-contact .form-sheet-wrap {
  --editorial-form-background:
    radial-gradient(circle at 17% 19%, rgba(12, 26, 61, 0.008) 0 1px, transparent 1.7px),
    radial-gradient(circle at 68% 43%, rgba(184, 146, 58, 0.01) 0 1px, transparent 1.7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 249, 242, 0.94)),
    var(--white);
  --editorial-form-padding: clamp(28px, 4.6vw, 52px);
  --editorial-form-radius: 2px;
  --editorial-form-grid-gap: 22px 24px;
  --editorial-form-field-gap: 9px;
  --editorial-form-field-margin-top: 0;
  --editorial-form-message-margin: 0 0 18px;
  --editorial-form-consent-margin: 0;
  --editorial-form-consent-padding: 0;
  --editorial-form-consent-border-top: 0;
  --editorial-form-consent-size: 0.78rem;
  --editorial-form-consent-line-height: 1.58;
  --editorial-form-consent-color: rgba(26, 26, 46, 0.58);
}

body.page-contact .form-sheet {
  background-size: 38px 38px, 44px 44px, auto, auto;
}

body.page-contact .form-sheet form[data-lead-form="seller"] {
  display: grid;
  gap: 22px;
}

body.page-contact .button-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  margin-top: 4px;
}

body.page-contact .button-row + .consent-block {
  margin-top: -4px;
}

body.page-contact .editorial-btn.contact-submit,
body.page-contact [data-submit-button].contact-submit,
body.page-contact .form-submit.contact-submit {
  --editorial-btn-min-height: 52px;
  --editorial-btn-padding: 0 30px;
  --editorial-btn-radius: 2px;
  --editorial-btn-font-weight: 850;
  width: auto;
  margin: 0;
}

body.page-contact .editorial-btn.contact-submit::after,
body.page-contact [data-submit-button].contact-submit::after,
body.page-contact .form-submit.contact-submit::after {
  content: "→";
  margin-left: 12px;
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

body.page-contact .editorial-btn.contact-submit:hover,
body.page-contact [data-submit-button].contact-submit:hover,
body.page-contact .form-submit.contact-submit:hover {
  transform: none;
}

body.page-contact .response-note {
  max-width: 260px;
  margin: 0;
  color: rgba(26, 26, 46, 0.56);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: left;
}

@media (max-width: 900px) {
  body.page-contact .contact-composition {
    grid-template-columns: 1fr;
  }

  body.page-contact .contact-aside {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(240px, 0.55fr);
    gap: 26px;
    padding-top: 0;
    order: 2;
    text-align: left;
  }

  body.page-contact .aside-copy {
    margin-left: 0;
  }

  body.page-contact .form-sheet-wrap {
    order: 1;
  }
}

@media (max-width: 680px) {
  body.page-contact .contact-editorial {
    padding: calc(68px + 20px) 18px 62px;
  }

  body.page-contact #contact-title {
    font-size: clamp(2.85rem, 13vw, 4rem);
    white-space: normal;
  }

  body.page-contact .contact-aside {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.page-contact .form-sheet-wrap {
    --editorial-form-padding: 26px 22px;
  }

  body.page-contact .form-sheet {
    border-left-width: 5px;
  }

  body.page-contact .form-sheet .editorial-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.page-contact .button-row {
    display: grid;
    justify-items: start;
    gap: 12px;
  }

  body.page-contact .response-note {
    max-width: none;
    text-align: left;
  }

  body.page-contact .direct-value {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
