/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  padding: calc(9rem + var(--topbar-h)) 0 5rem;
  background: var(--light-bg, #f6f6f4);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── Left column ── */
.contact-hero-text .caption-text { color: var(--yellow); }

.contact-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brand-color, #1e2c3f);
  line-height: 1.15;
  margin: 0.6rem 0 1.2rem;
}

.contact-hero-text > p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  max-width: 460px;
  margin: 0 0 2rem;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-points svg {
  flex: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 50%;
  background: var(--brand-color, #1e2c3f);
  color: var(--white);
}

.contact-point-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
}

.contact-points a,
.contact-points div > span:last-child {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-color, #1e2c3f);
  text-decoration: none;
}

.contact-points a:hover { color: var(--yellow); }

/* ── Form card ── */
.contact-form-card {
  background: var(--white);
  border: 1px solid #e7e7e3;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px -30px rgba(20,30,50,0.25);
}

.contact-form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--brand-color, #1e2c3f);
  margin: 0 0 0.3rem;
}

.contact-form-sub {
  font-size: 0.85rem;
  color: #888;
  margin: 0 0 1.6rem;
}
.contact-form-sub span,
.form-field label span { color: #c0392b; }

.contact-error {
  background: #fdecea;
  border: 1px solid #f5c6c2;
  color: #b1392b;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.form-row { margin-bottom: 1.1rem; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field { display: flex; flex-direction: column; }

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-color, #1e2c3f);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #d8d8d4;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #2a2a2a;
  background: #fcfcfb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-color, #1e2c3f);
  box-shadow: 0 0 0 3px rgba(30,44,63,0.08);
  background: var(--white);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.6rem;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.contact-privacy {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.5;
  margin: 1rem 0 0;
  text-align: center;
}

/* Honeypot — visually hidden, off-screen */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── Success state ── */
.contact-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.contact-success svg { color: #2e9e5b; margin-bottom: 1rem; }
.contact-success h2 { margin-bottom: 0.6rem; }
.contact-success p {
  color: #555;
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 1.6rem;
}
.contact-success a { color: var(--brand-color, #1e2c3f); font-weight: 600; }
.contact-success .btn-explore-dark { color: var(--white); }

/* nav active state */
.navbar-left .nav-link a.is-active { color: var(--yellow); }

@media (max-width: 900px) {
  .contact-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
  .contact-hero { padding: 7rem 0 3rem; }
  .contact-form-card { padding: 1.6rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}
