/* contact.css
   Follows the same design tokens and patterns as faith-statement.css
─────────────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue:       #0247C1;
  --blue-dark:  #01338a;
  --blue-light: #e8f0fc;
  --gold:       #C9A84C;
  --gold-light: #f5ecd4;
  --black:      #0D0D0D;
  --grey-dark:  #2a2a2a;
  --grey-mid:   #6b6b6b;
  --grey-light: #F4F4F4;
  --white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}


/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */

.contact-hero {
  background: var(--blue-dark);
  padding: 96px 0 80px;
}

.contact-hero__inner {
  max-width: 760px;
}

.contact-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-hero__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}


/* ─────────────────────────────────────────────────────────
   CONTACT BODY
───────────────────────────────────────────────────────── */

.contact-section {
  padding: 80px 0 96px;
  background: var(--white);
}

.contact-section__inner {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-card {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 36px 40px;
}

.contact-card__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-card__link {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.contact-card__link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.contact-card__note {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--grey-mid);
}

.contact-card__body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-dark);
  margin-bottom: 24px;
}

.contact-card__body a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-card__body a:hover {
  text-decoration: underline;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--grey-mid);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

/* reuse btn classes from faith-statement.css */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn--ghost:hover {
  background: var(--blue);
  color: var(--white);
}


/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .contact-hero {
    padding: 64px 0 56px;
  }

  .contact-hero__title {
    font-size: 2rem;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-section {
    padding: 56px 0 72px;
  }
}
