/* ==========================================================================
   CONTACT.CSS
   Styles specific to contact.html only.
   Auto-split from the original style.css — no CSS rules were modified.
   Load AFTER common.css
   ========================================================================== */


/* =========================================================================
   12. CONTACT PAGE (contact.html)
   ========================================================================= */

.contact-hero { padding-block: 58px 6px; text-align: center; }

.contact-hero .eyebrow { justify-content: center; }

.contact-hero h1 { font-size: clamp(32px, 5vw, 50px); margin-top: 14px; }

.contact-hero p { max-width: 560px; margin: 16px auto 0; color: var(--text-secondary); font-size: 16px; line-height: 1.65; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 48px; padding-block: 40px clamp(56px, 7vw, 90px); align-items: start; }

.contact-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }

.contact-form-card h2 { font-size: 20px; margin-bottom: 24px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { margin-bottom: 18px; }

.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg);
  font-size: 14.5px;
  font-family: var(--font-body);
}

.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238992A8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }

.form-field textarea { min-height: 150px; resize: vertical; }

.contact-note { font-size: 13px; margin-top: 6px; color: var(--text-muted); }

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
  display: flex; gap: 14px; align-items: flex-start;
}

.contact-info-card .icon-wrap {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(var(--signal-rgb), 0.12); color: var(--signal);
  display: grid; place-items: center; flex-shrink: 0;
}

.contact-info-card .icon-wrap svg { width: 19px; height: 19px; }

.contact-info-card h4 { font-size: 15px; margin-bottom: 4px; }

.contact-info-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; }

.contact-info-card a { color: var(--signal); font-weight: 600; }

.contact-map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); aspect-ratio: 16/11; }

.contact-map img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr; }
}
