/* Contact page only. Sitewide chrome/primitives live in base.css, nav.css, footer.css. */

/* PAGE HERO */
.contact-hero { position: relative; overflow: hidden; background: var(--obsidian); color: var(--ivory); padding: 100px 0 80px; }
.contact-hero h1 { margin-top: 18px; max-width: 660px; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.16; color: var(--ivory); font-weight: 500; }
.contact-hero-body { margin-top: 24px; max-width: 560px; color: var(--fog); font-size: 16px; line-height: 1.9; }
.contact-hero .btn { margin-top: 34px; }
.contact-support { margin-top: 26px; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fog); }

/* FORM */
/* Last section on every page that uses this file (Contact + all 6 intake/mockup
   forms), before the footer — needs its own bottom padding now that the generic
   `section{}` rule (base.css) only supplies top padding. */
.contact-form-section { background: var(--ivory); padding-bottom: 110px; }
.contact-form { max-width: 640px; margin-top: 8px; }
.field { margin-bottom: 26px; }
.field label {
  display: block;
  margin-bottom: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hair);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--obsidian);
}
/* Selects get their own rule (not grouped with input/textarea above) because they
   need appearance:none, a custom arrow, and right-padding to clear it — a plain
   shared rule would leave selects looking identical to a text box. */
.field select {
  width: 100%;
  padding: 14px 44px 14px 16px;
  border: 1px solid var(--hair);
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23847E70' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px 7px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--obsidian);
  cursor: pointer;
}
.field select:hover {
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .contact-hero { padding: 72px 0 56px; }
  .contact-form-section { padding-bottom: 64px; }
}
