body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Labels */
.label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
  display: block;
}

/* Section Titles */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-sub {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 520px;
}

/* Gold divider line */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
}

p { line-height: 1.8; }
