/* ===== CSS Variables ===== */
:root {
  --ink: #1B1B1B;
  --paper: #FAF8F4;
  --rust: #8B3A2F;
  --gold: #C49B3D;
  --cream: #F5F0E8;
  --light: #E8E0D4;
  --gold-light: rgba(196, 155, 61, 0.15);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Crimson Pro', Palatino, serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --max-width: 1200px;
  --nav-height: 60px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
@media (max-width: 767px) { html { font-size: 15px; } }
@media (max-width: 479px) { html { font-size: 14px; } }
body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}

/* ===== Ornamental Elements ===== */
.diamond-divider {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-md); margin: var(--space-xl) auto; max-width: 300px;
}
.diamond-divider::before, .diamond-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.6;
}
.diamond-divider .diamond {
  width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0;
}
.section-rule::before {
  content: '\25C6'; display: block; text-align: center; color: var(--gold);
  font-size: 0.875rem; opacity: 0.7; letter-spacing: 1rem;
}
.section-rule-top { border-top: 1px solid var(--gold); opacity: 0.4; }
.ornamental-box {
  position: relative; padding: var(--space-xl);
}
.ornamental-box::before, .ornamental-box::after {
  content: ''; position: absolute; width: 40px; height: 40px;
  border-color: var(--gold); border-style: solid; opacity: 0.5;
}
.ornamental-box::before {
  top: var(--space-md); left: var(--space-md);
  border-width: 2px 0 0 2px;
}
.ornamental-box::after {
  top: var(--space-md); right: var(--space-md);
  border-width: 2px 2px 0 0;
}

/* ===== Typography ===== */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center; margin-bottom: var(--space-sm); letter-spacing: 0.02em;
}
.section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  text-align: center; color: var(--ink); opacity: 0.6;
  font-style: italic; margin-bottom: var(--space-lg);
}
.lead-text { font-size: 1.15rem; line-height: 1.8; }

/* ===== Utility ===== */
.container {
  width: 100%; max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--space-lg);
}
.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;
}
@media (min-width: 768px) { .container { padding: 0 var(--space-xl); } }
