@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --bg: #F5F2ED;
  --bg-soft: #EFEBE4;
  --bg-card: #F0EDE7;
  --black: #111111;
  --black-soft: #222222;
  --gray-dark: #3A3A3A;
  --gray: #777777;
  --gray-light: #AAAAAA;
  --border: #DEDAD3;
  --border-dark: #C8C3BB;
  --gold: #B8933F;
  --gold-light: rgba(184, 147, 63, 0.10);
  --gold-mid: rgba(184, 147, 63, 0.28);
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--black);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ── PAGE ── */
.page { padding-top: 64px; min-height: 100vh; }

/* ── MAX WIDTH WRAPPER ── */
.section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 48px;
}

.section-sm {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 48px;
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

/* ── HEADINGS ── */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.0;
  color: var(--black);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}

/* ── RULE ── */
hr {
  border: none;
  border-top: 1px solid var(--border);
}

.gold-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

/* ── BULLET LIST ── */
.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.bullet-list li {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.65;
}

.bullet-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
  margin-top: 1px;
}

/* ── TAGS ── */
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }

.tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--border-dark);
  padding: 3px 9px;
}

.tag.gold { color: var(--gold); border-color: var(--gold-mid); background: var(--gold-light); }

/* ── BUTTON ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--black);
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn:hover { background: var(--black); color: var(--bg); }

/* ── STAT ── */
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate { opacity: 0; }
.animate.visible { animation: fadeUp 0.5s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .section { padding: 60px 24px; }
  .section-sm { padding: 40px 24px; }
  footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
}
