body {
  background: var(--parchment);
  color: var(--abyss);
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}

/* ── HERO ── */
/* Restore gold eyebrow on dark hero background */
.contact-hero .section-eyebrow { color: var(--gold); }
.contact-hero {
  background: var(--abyss);
  padding: 9rem 6rem 6rem;
  border-bottom: 1px solid rgba(112,162,174,0.15);
}
.contact-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin: 0.5rem 0 1.5rem;
}
.contact-hero-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.9;
  max-width: 560px;
}

/* ── MAIN CONTACT AREA ── */
.contact-main {
  padding: 6rem;
  background: var(--parchment);
}
.contact-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 6rem;
  align-items: start;
}

/* ── FORM COLUMN ── */
.contact-form-col > .section-eyebrow {
  margin-bottom: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Honeypot — visually hidden but NOT display:none (some bots skip those) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--abyss);
}
.required { color: var(--gold); }

/* Math CAPTCHA question — styled to sit between the label and input */
.captcha-q {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--abyss);
  padding: 0.3rem 0 0.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--abyss);
  background: white;
  border: 1.5px solid rgba(6,31,40,0.15);
  padding: 0.85rem 1rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(112,162,174,0.15);
}
.form-group input.is-error,
.form-group select.is-error,
.form-group textarea.is-error {
  border-color: #b33;
}
/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23061F28' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}
.char-count {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: var(--warm-gray);
  text-align: right;
  margin-top: 0.2rem;
}
.char-count.near-limit { color: #b33; }
.field-error {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #b33;
  min-height: 1em;
  display: block;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}
.form-note {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-style: italic;
}
.form-submit-btn { cursor: pointer; }
.form-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── SUCCESS STATE ── */
.form-success {
  padding: 3rem;
  background: white;
  border: 1px solid rgba(112,162,174,0.25);
  border-left: 4px solid var(--teal);
  margin-top: 1rem;
}
.success-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--abyss);
  margin-bottom: 0.75rem;
}
.form-success p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--abyss-text);
  line-height: 1.85;
}
.form-success a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(112,162,174,0.5);
  transition: color 0.18s;
}
.form-success a:hover { color: var(--abyss); }

/* ── ERROR STATE ── */
.form-error-state {
  padding: 1.25rem 1.5rem;
  background: rgba(170,0,0,0.06);
  border-left: 3px solid #b33;
  margin-top: 1rem;
}
.form-error-state p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #b33;
  line-height: 1.7;
  margin: 0;
}

/* ── NO-JS FALLBACK ── */
.noscript-fallback {
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(6,31,40,0.12);
  margin-top: 1rem;
}
.noscript-fallback p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--abyss-text);
  line-height: 1.7;
}

/* ── INFO COLUMN ── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 90px;
}
.info-block {
  background: white;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(223,182,43,0.18);
}
.info-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.info-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--abyss-text);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.info-text:last-child { margin-bottom: 0; }
.info-text strong { color: var(--abyss); font-weight: 600; }

.info-cta {
  display: inline-block;
  font-size: 0.6rem;
  padding: 0.65rem 1.2rem;
}
.info-email {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.info-email a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(112,162,174,0.35);
  transition: color 0.18s, border-color 0.18s;
}
.info-email a:hover { color: var(--abyss); border-color: var(--abyss); }
.info-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--abyss);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--abyss);
  transition: color 0.18s, border-color 0.18s;
}
.info-link:hover { color: var(--teal); border-color: var(--teal); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-hero { padding: 8rem 3rem 5rem; }
  .contact-main { padding: 4rem 3rem; }
  .contact-main-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .contact-info-col {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .info-block { flex: 1 1 calc(50% - 0.75rem); }
}
@media (max-width: 640px) {
  .contact-hero { padding: 7rem 1.5rem 4rem; }
  .contact-main { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .contact-info-col { flex-direction: column; }
  .info-block { flex: none; }
}
