/* IFC's common text system. Page CSS keeps layout, accents, and quote/map exceptions. */
:root {
  --font-brand: "Quicksand", "Trebuchet MS", sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
}

body {
  font-family: var(--font-body);
}

h1, h2, h3 {
  font-family: var(--font-brand);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.25;
  color: #7A2E4F;
}

h2 {
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  line-height: 1.3;
  color: #2B2B2B;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  color: #2B2B2B;
}

h3.section-subheading {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-style: normal;
  line-height: 1.35;
  color: #2B2B2B;
}

/* Low specificity lets intentional quotes retain their own typography. */
:where(main) p, :where(main) li {
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.7;
}

.eyebrow, .section .eyebrow {
  font-family: var(--font-brand);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #D9A15D;
}

.btn, .social-links a {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

/* FAQ controls provide the text of their enclosing H3. */
h3 > .faq-question {
  font: inherit;
}
