/* Contact page supplement. Loads AFTER /assets/css/style.css; reuses chrome, tokens, .eyebrow, .btn. */

.contact-sec { background: var(--cream); }
.contact-head { margin: 0 0 32px; }
.contact-head h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin: 0 0 16px;
}
.contact-head h1 em { font-style: italic; color: var(--red); }
.contact-head p { font-size: 19px; line-height: 1.6; color: var(--text-mid); margin: 0; max-width: 560px; }
/* Eyebrow is a <p> too — keep it at the sitewide 12px pill size (don't inherit the
   oversized body-paragraph rule above). At 12px it fits one line on desktop; it
   wraps gracefully on narrow mobile rather than overflowing the column. */
.contact-head .eyebrow { font-size: 12px; max-width: none; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Aside — direct contact */
.contact-aside h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 16px;
}
.contact-direct { list-style: none; margin: 0 0 28px; padding: 0; }
.contact-direct li { margin: 0 0 14px; }
.contact-direct a {
  font-size: 16px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border-mid);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.contact-direct a:hover { border-bottom-color: var(--red); color: var(--red); }
.contact-direct .ca-label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin: 0 0 4px;
}
.contact-sla {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  padding: 12px 14px;
  background: var(--green-pale);
  border-radius: var(--radius-btn);
}
.contact-sla .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* Form card */
.ck-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.ck-field { margin: 0 0 20px; }
.ck-label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin: 0 0 8px;
}
.ck-input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ck-input::placeholder { color: var(--text-light); }
.ck-input:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 28, 58, 0.08);
}
.ck-textarea { resize: vertical; min-height: 132px; line-height: 1.55; }
.ck-consent { font-size: 12px; color: var(--text-light); line-height: 1.5; margin: 0 0 20px; }
.ck-submit {
  background: var(--navy);
  color: var(--cream);
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s;
}
.ck-submit:hover { background: var(--red); }
.ck-submit:disabled { opacity: 0.6; cursor: default; }

/* Honeypot — visually hidden, still in the DOM for Netlify */
.ck-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Inline success / error states */
.ck-success {
  border: 1px solid var(--green);
  background: var(--green-pale);
  border-radius: var(--radius-panel);
  padding: 32px;
}
.ck-success h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--navy);
  margin: 0 0 10px;
}
.ck-success p { font-size: 15px; color: var(--text-mid); line-height: 1.6; margin: 0; }
.ck-error {
  font-size: 13px;
  color: var(--red);
  margin: 12px 0 0;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .ck-card { padding: 24px; }
}
