/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;

  --color-gold:       #C4A882;
  --color-cream:      #FAF8F4;
  --color-text:       #5C5252;
  --color-text-muted: #8a7e7e;
}

/* ─── Base Typography ────────────────────────────────────────── */
body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-text);
}

/* ─── Shared Component Styles ────────────────────────────────── */
.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
}

.site-nav-link {
  font-family: var(--font-display);
  font-weight: 400;
}

.footer-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-muted);
}

.accordion-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
}
