/* Shared styles for static pages (privacy, terms, about, contact) */
:root {
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-dark: #8B6508;
  --gold-bg: #FBF7F0;
  --gold-bg2: #F5EDE0;
  --text: #1A1611;
  --text2: #6B5D4F;
  --text3: #9B8E80;
  --border: #E8DFD2;
  --white: #FFFFFF;
  --radius: 12px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --gold-bg: #1A1611;
    --gold-bg2: #25201A;
    --text: #F5EDE0;
    --text2: #B8A898;
    --text3: #7A6D5F;
    --border: #3A3228;
    --white: #211C16;
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--gold-bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.logo {
  width: 44px; height: 44px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 15px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  color: var(--text);
}
.brand span { color: var(--gold); }
.brand small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--text3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.site-nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.site-nav a:hover { color: var(--gold); }

/* Article content */
.page h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--text);
}
.page .subtitle {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 28px;
}
.page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}
.page h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--text);
}
.page p, .page li {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.page ul, .page ol {
  padding-left: 22px;
  margin-bottom: 12px;
}
.page a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.page a:hover { color: var(--gold); }
.page strong { color: var(--text); }

.callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0;
}
.callout p { margin-bottom: 0; }

/* Footer */
.site-footer {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text3);
  line-height: 1.8;
}
.site-footer a {
  color: var(--text3);
  text-decoration: none;
  margin: 0 6px;
}
.site-footer a:hover { color: var(--gold); }
.site-footer .copy { margin-top: 10px; }

@media (max-width: 560px) {
  .page h1 { font-size: 26px; }
  .page h2 { font-size: 19px; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 12px; }
}
