:root {
  --bg: #fdf8ed;
  --bg-warm: #f8efd8;
  --bg-paper: #ffffff;
  --gold: #d9a93e;
  --gold-deep: #b8861f;
  --gold-bright: #f1c054;
  --gold-soft: #f5e3b3;
  --ink: #1a1a1a;
  --ink-soft: #2d2d2d;
  --ink-muted: #6b6358;
  --line: rgba(217, 169, 62, 0.25);
  --shadow-soft: 0 15px 40px -15px rgba(26, 26, 26, 0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Outfit', system-ui, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.7; }
img { display: block; }

/* Header */
header.page-header {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 4rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(253, 248, 237, 0.92);
}
.header-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.brand-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--ink); }
.brand-logo img { width: 44px; height: 44px; border-radius: 9px; }
.brand-logo .name { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; }
.brand-logo .name .i { color: var(--gold-deep); font-style: italic; }
.back-link { color: var(--ink-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s ease; }
.back-link:hover { color: var(--gold-deep); }
.back-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.back-link:hover svg { transform: translateX(-3px); }

/* Page hero */
.page-hero { background: var(--bg-warm); padding: 5rem 4rem 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(241, 192, 84, 0.25) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--gold-deep); font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.25rem; font-weight: 600; }
.page-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.page-hero h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 1rem; color: var(--ink); }
.page-hero h1 em { font-style: italic; color: var(--gold-deep); font-weight: 500; }
.last-updated { font-size: 0.95rem; color: var(--ink-muted); }
.last-updated strong { color: var(--ink); font-weight: 500; }

/* Policy content */
main.policy { max-width: 800px; margin: 0 auto; padding: 4rem 4rem 5rem; }
main.policy p { margin-bottom: 1.25rem; color: var(--ink-soft); font-size: 1.02rem; }
main.policy p.intro { font-size: 1.15rem; color: var(--ink-muted); margin-bottom: 2rem; }
main.policy h2 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.9rem; letter-spacing: -0.015em; margin: 3.5rem 0 1.25rem; color: var(--ink); padding-top: 1rem; border-top: 1px solid var(--line); }
main.policy h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
main.policy h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.35rem; margin: 2rem 0 0.85rem; color: var(--ink); }
main.policy ul { list-style: none; margin-bottom: 1.5rem; padding-left: 0; }
main.policy ul li { position: relative; padding: 0.5rem 0 0.5rem 1.75rem; color: var(--ink-soft); font-size: 1.02rem; }
main.policy ul li::before { content: ''; position: absolute; left: 0.25rem; top: 1.1rem; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
main.policy ul li strong { color: var(--ink); font-weight: 600; }
main.policy a { color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid var(--line); transition: all 0.2s ease; }
main.policy a:hover { color: var(--ink); border-bottom-color: var(--gold); }

/* Definitions card */
.definitions-card { background: var(--bg-paper); border: 1px solid var(--line); border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; }
.definitions-card ul li { padding: 0.6rem 0 0.6rem 1.75rem; border-bottom: 1px solid rgba(217, 169, 62, 0.12); }
.definitions-card ul li:last-child { border-bottom: none; }

/* Contact callout */
.contact-callout { background: var(--bg-paper); border-radius: 16px; padding: 2rem; text-align: center; margin-top: 3rem; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.contact-callout h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 0.75rem; margin-top: 0; }
.contact-callout p { margin-bottom: 0.5rem; }
.contact-callout .obf-email { display: inline-block; margin-top: 0.5rem; padding: 0.6rem 1.25rem; background: var(--ink); color: var(--bg); border-radius: 10px; text-decoration: none; font-weight: 500; border: 0; transition: all 0.3s ease; }
.contact-callout .obf-email:hover { background: var(--gold-deep); color: var(--bg); border: 0; }

/* Footer */
footer { background: var(--ink); color: var(--bg); padding: 2.5rem 4rem 1.75rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand img { width: 32px; height: 32px; border-radius: 7px; }
.footer-brand .name { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--bg); }
.footer-brand .name .i { color: var(--gold-bright); font-style: italic; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-links a, .footer-links .obf-email { color: var(--bg); text-decoration: none; opacity: 0.7; font-size: 0.88rem; cursor: pointer; border: 0; transition: opacity 0.3s ease; }
.footer-links a:hover, .footer-links .obf-email:hover { opacity: 1; color: var(--gold-bright); }
.footer-copyright { width: 100%; padding-top: 1.25rem; border-top: 1px solid rgba(241, 192, 84, 0.15); margin-top: 0.75rem; text-align: center; font-size: 0.78rem; opacity: 0.5; }

/* Responsive */
@media (max-width: 768px) {
  header.page-header { padding: 1rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  main.policy { padding: 2.5rem 1.5rem 3rem; }
  footer { padding: 2rem 1.5rem 1.5rem; }
  .brand-logo .name { font-size: 1.1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}
