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

:root {
  --gold: #D4621A;
  --gold-dim: rgba(212,98,26,0.4);
  --gold-ghost: rgba(212,98,26,0.08);
  --bg: #0a0a0a;
  --bg2: #0d0d0d;
  --bg3: #111214;
  --text: #f0ece4;
  --text-mid: rgba(240,236,228,0.55);
  --text-dim: rgba(240,236,228,0.3);
  --border: rgba(255,255,255,0.07);
  --blue: #5B8FA8;
  --rose: #8B5E6E;
  --green: #6B9E7A;
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── GRID OVERLAY ── */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(10,10,10,0.96);
  border-bottom: 1px solid rgba(200,169,110,0.15);
  backdrop-filter: blur(12px);
}
.nav-brand { display: flex; align-items: baseline; gap: 0.45rem; }
.nav-brand .name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; color: var(--gold); letter-spacing: 0.02em;
}
.nav-brand .slash { color: var(--text-dim); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  color: var(--text-dim); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* ── SECTION SHARED ── */
.section { padding: 8rem 2.5rem; }
.section.bg2 { background: var(--bg2); }
.section.bg3 { background: var(--bg3); }
.inner { max-width: 1100px; margin: 0 auto; }
.inner-narrow { max-width: 780px; margin: 0 auto; }

/* ── EYEBROW ── */
.eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-text {
  color: var(--gold); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ── HEADINGS ── */
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15; color: var(--text);
}
.display em { color: var(--gold); font-style: italic; }
.display-xl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400; line-height: 1.0; color: var(--text);
}
.display-xl em { color: var(--gold); font-style: italic; }

/* ── TAGS ── */
.tag {
  display: inline-block; padding: 0.22rem 0.65rem;
  font-size: 0.65rem; letter-spacing: 0.13em; text-transform: uppercase;
}
.tag-gold { background: var(--gold-ghost); border: 1px solid var(--gold-dim); color: var(--gold); }
.tag-blue { background: rgba(91,143,168,0.1); border: 1px solid rgba(91,143,168,0.35); color: var(--blue); }
.tag-rose { background: rgba(139,94,110,0.1); border: 1px solid rgba(139,94,110,0.35); color: var(--rose); }
.tag-green { background: rgba(107,158,122,0.1); border: 1px solid rgba(107,158,122,0.35); color: var(--green); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; padding: 0.9rem 2.25rem;
  background: var(--gold); color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 500;
  transition: background 0.2s; cursor: pointer; border: none;
}
.btn-primary:hover { background: #d4b87a; }
.btn-outline {
  display: inline-block; padding: 0.9rem 2.25rem;
  border: 1px solid var(--gold-dim); color: var(--gold);
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-ghost); }

/* ── DIVIDER ROW ── */
.divider-row {
  border-top: 1px solid var(--border);
  display: grid; gap: 2rem;
  padding: 2.5rem 0;
}

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── GLOW ── */
.glow-gold {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(200,169,110,0.07) 0%, transparent 70%);
}
.glow-blue {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(91,143,168,0.06) 0%, transparent 70%);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 2.5rem 5rem;
  background: var(--bg);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* ── KEYWORD CHIPS ── */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.chip {
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.73rem; letter-spacing: 0.04em;
}

/* ── STAT STRIP ── */
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(200,169,110,0.2);
  background: var(--gold-ghost);
  margin-top: 4rem;
}
.stat-cell {
  padding: 2rem 2.25rem;
  border-right: 1px solid rgba(200,169,110,0.15);
}
.stat-cell:last-child { border-right: none; }
.stat-label { color: var(--gold); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.45rem; }
.stat-value { color: var(--text); font-size: 0.95rem; margin-bottom: 0.2rem; }
.stat-sub { color: var(--text-dim); font-size: 0.75rem; }

/* ── FOOTER ── */
footer {
  margin-top: 5rem; padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.footer-brand .name { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 0.95rem; }
.footer-brand .entity { color: var(--text-dim); font-size: 0.75rem; margin-left: 0.4rem; }
.footer-loc { color: var(--text-dim); font-size: 0.7rem; letter-spacing: 0.09em; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.68rem; }
  .section { padding: 5rem 1.5rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(200,169,110,0.15); }
  .stat-cell:last-child { border-bottom: none; }
  footer { flex-direction: column; text-align: center; }
}
