/* Typography */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: var(--text-2xl); font-weight: 700; }
h2 { font-size: var(--text-xl);  font-weight: 600; }
h3 { font-size: var(--text-lg);  font-weight: 600; }
h4 { font-size: var(--text-md);  font-weight: 600; }

@media (min-width: 768px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl);  }
}

/* Body text */
p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-sm {
  font-size: var(--text-sm);
}

/* Script / decorative */
.font-script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.1;
}

.font-serif {
  font-family: var(--font-serif);
}

/* Section labels */
.label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: var(--space-3);
}

/* Divider ornament */
.ornament {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-size: var(--text-lg);
  line-height: 1;
  margin: var(--space-4) auto;
  letter-spacing: 0.3em;
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: var(--color-primary);
  line-height: 1.3;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

/* Links */
a:hover {
  color: var(--color-primary);
}

/* Alignment utilities */
.text-center { text-align: center; }
.text-left   { text-align: left; }

/* Hero-specific */
.hero-names {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: var(--text-script-hero);
  color: var(--color-text-light);
  line-height: 1.05;
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-date {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 4vw, 1.9rem);
  margin-top: -0.5rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--color-primary);
  text-align: center;
  line-height: 1;
  margin-bottom: var(--space-2);
}
