/* ── CONTACT PAGE STYLES ── */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 46vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 100px 24px 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity: 0.55; pointer-events: none;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1; letter-spacing: -1.2px;
  color: var(--dark); max-width: 600px;
  margin-bottom: 20px; padding-top: 16px;
  animation: fadeUp .6s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--sage-dk); }
.page-hero-sub {
  font-size: 0.975rem; color: var(--muted);
  max-width: 480px; font-weight: 300; line-height: 1.75;
  animation: fadeUp .6s .1s ease both;
}
.section-label {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-dk);
  font-weight: 500; margin-bottom: 12px;
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 72px 48px 96px; background: var(--sand);
}
.contact-grid {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 56px; max-width: 1100px; margin: 0 auto;
  align-items: start;
}

/* ── INFO COLUMN ── */
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  font-size: 1.3rem; width: 44px; height: 44px;
  background: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.ci-value {
  font-size: 0.9rem; color: var(--dark); line-height: 1.6;
}
.ci-value a { color: var(--sage-dk); text-decoration: none; }
.ci-value a:hover { text-decoration: underline; }
.ci-divider { height: 1px; background: rgba(197,213,245,0.5); margin: 4px 0; }
.quick-links { display: flex; flex-direction: column; gap: 10px; }
.quick-links a {
  font-size: 0.875rem; color: var(--sage-dk); text-decoration: none;
  font-weight: 500; transition: color .2s;
}
.quick-links a:hover { color: var(--dark); }

/* ── FORM COLUMN ── */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: 0 4px 24px rgba(13,27,75,.07);
}
.form-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; letter-spacing: -0.4px;
  color: var(--dark); margin-bottom: 6px;
}
.form-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; line-height: 1.65; }

/* FIELDS */
.cf-field { margin-bottom: 18px; }
.cf-field label {
  display: block; font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.cf-field .req { color: #d94040; }
.cf-field input, .cf-field textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid rgba(197,213,245,0.7);
  border-radius: 10px; background: var(--sky);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--dark); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  box-sizing: border-box;
}
.cf-field input:focus, .cf-field textarea:focus {
  border-color: var(--sage-dk);
  box-shadow: 0 0 0 3px rgba(27,63,160,0.09);
  background: var(--white);
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: #9ab0d8; }
.cf-field textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.cf-submit {
  width: 100%; background: var(--sage-dk); color: var(--white);
  border: none; padding: 15px; border-radius: 12px; margin-top: 8px;
  font-family: 'DM Serif Display', serif; font-size: 1rem; letter-spacing: -0.2px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.cf-submit:hover { background: var(--dark); transform: translateY(-1px); }
.cf-submit svg { width: 15px; height: 15px; }

/* SUCCESS STATE */
.cf-success {
  display: none; flex-direction: column;
  align-items: center; text-align: center;
  padding: 48px 16px;
}
.cf-success-icon { font-size: 3rem; margin-bottom: 18px; }
.cf-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.65rem; margin-bottom: 10px; color: var(--dark);
}
.cf-success p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; max-width: 300px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-section { padding: 56px 28px 72px; }
}
@media (max-width: 540px) {
  .contact-section { padding: 44px 20px 60px; }
  .contact-block { max-width: 100%; }
}
