/* ── contact.css — Contact page styles ─────────────────────── */

/* ── 1. CONTACT HERO ────────────────────────────────────────── */
.contact-hero {
  background: var(--bg-cream);
  text-align: center;
}

.contact-hero__inner {
  max-width: 680px;
  margin-inline: auto;
}

.contact-hero__h1 {
  margin-top: var(--s-3);
}

.contact-hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: var(--s-5);
  max-width: 540px;
  margin-inline: auto;
}

.contact-hero__info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-7);
  font-family: var(--font-body);
  font-size: .95rem;
}

.contact-hero__info-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}

.contact-hero__info-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

a.contact-hero__info-item:hover { color: var(--gold); }

.contact-hero__info-item--plain {
  cursor: default;
}

.contact-hero__info-sep {
  color: var(--border);
}

/* ── 2. CONTACT FORM SECTION ────────────────────────────────── */
.contact-form-section {
  background: var(--bg-white);
}

.contact-form-section__head {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--s-8);
}

.contact-form-section__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: var(--s-4);
}

/* Widen the form card slightly for the contact layout */
.contact-form-card {
  max-width: 820px;
}

/* "(optional)" label modifier — muted weight/color */
.cf-label-opt {
  font-weight: 400;
  color: var(--text-faint);
}

/* Submit button full-width on contact form */
.contact-form-submit {
  margin-top: var(--s-6);
}

.contact-form-btn {
  width: 100%;
  justify-content: center;
}

/* ── 3. CONTACT FAQ ──────────────────────────────────────────── */
.contact-faq {
  background: var(--bg-cream);
}

.contact-faq__head {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: var(--s-8);
}

.contact-faq__card {
  background: var(--bg-white);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--sh-soft);
  max-width: 760px;
  margin-inline: auto;
  overflow: hidden;
}

.contact-faq__item + .contact-faq__item {
  border-top: 1px solid var(--border-soft);
}

.contact-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s-5) var(--s-6);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--s-4);
  font: inherit;
}

.contact-faq__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.contact-faq__question {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.contact-faq__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--t-fast) var(--ease);
}

.contact-faq__item.is-open .contact-faq__chevron {
  transform: rotate(180deg);
}

.contact-faq__panel {
  display: none;
  padding: 0 var(--s-6) var(--s-5);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-faq__item.is-open .contact-faq__panel {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .contact-faq__chevron { transition: none; }
}

.contact-faq__contact {
  text-align: center;
  margin-top: var(--s-7);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-muted);
}

.contact-faq__contact a {
  color: var(--gold);
  font-weight: 500;
  transition: opacity var(--t-fast);
}

.contact-faq__contact a:hover { opacity: .8; }

.contact-faq__contact a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (max-width: 600px) {
  /* Push content below the fixed 72px header — section-pad collapses to 64px
     which is less than the header height, clipping the eyebrow */
  .contact-hero {
    padding-top: calc(72px + var(--s-5)); /* 72 + 24 = 96px */
  }
}
