@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --charcoal: #1a1a1a;
  --charcoal-mid: #2c2c2c;
  --charcoal-light: #3d3d3d;
  --ivory: #f5f0e8;
  --ivory-dark: #ede7d9;
  --gold: #c8922a;
  --gold-light: #e8b04a;
  --gold-pale: #f5e6c8;
  --white: #ffffff;
  --text-muted: #888;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(200,146,42,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--charcoal);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
p { font-size: 1.05rem; font-weight: 300; color: rgba(245,240,232,0.8); }

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── LAYOUT ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, padding 0.3s;
}
nav.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--ivory); line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 0.65rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(245,240,232,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-cta {
  background: var(--gold); color: var(--charcoal);
  padding: 0.6rem 1.4rem; border-radius: 2px;
  text-decoration: none; font-size: 0.85rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ivory); transition: all 0.3s; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; border-radius: 2px; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,146,42,0.3); }
.btn-outline { background: transparent; color: var(--ivory); border: 1px solid rgba(245,240,232,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

/* ─── GOLD RULE ──────────────────────────────── */
.gold-rule { width: 48px; height: 3px; background: var(--gold); margin-bottom: 1.5rem; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ─── CARDS ──────────────────────────────────── */
.card {
  background: var(--charcoal-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--border-light); transform: translateY(-4px); }

/* ─── STAT ───────────────────────────────────── */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(245,240,232,0.6); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── TAG ────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.25);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: #111;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: var(--ivory); margin-bottom: 1.2rem; font-size: 0.8rem; }
.footer-col p { font-size: 0.9rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(245,240,232,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ─── SECTION DIVIDER ────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--border); margin: 0; }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate { opacity: 0; }
.animate.visible { animation: fadeUp 0.7s ease forwards; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─── MOBILE MENU ────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--ivory); text-decoration: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: var(--ivory); font-size: 2rem; cursor: pointer; }
