/* Base typography & utilities */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-maroon-900);
  line-height: 1.15;
}

h1 { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h1); }
h3 { font-size: var(--fs-h2); }
h4 { font-size: var(--fs-h3); }

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section {
  padding-block: var(--space-section);
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-700);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.section-heading p {
  margin-top: var(--space-4);
}

.text-center { text-align: center; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-maroon-900);
  color: var(--color-text-on-dark);
  padding: var(--space-3) var(--space-5);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

::selection {
  background: var(--color-gold-500);
  color: var(--color-maroon-900);
}

/* Gold-foil ornamental divider */
.divider-gold {
  width: 96px;
  height: 3px;
  margin-inline: auto;
  background: var(--gradient-gold);
  border-radius: var(--radius-pill);
  position: relative;
}
.divider-gold::before,
.divider-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  background: var(--color-gold-600);
  border-radius: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.divider-gold::before { left: -14px; }
.divider-gold::after { right: -14px; }

/* Subtle section texture */
.texture-bg {
  position: relative;
  background-color: var(--color-surface-alt);
}
.texture-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/texture/damask.svg');
  background-size: 340px;
  opacity: 0.05;
  pointer-events: none;
}
.texture-bg > * { position: relative; z-index: 1; }
