@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --gold: #c9a552;
  --gold-dim: rgba(201, 165, 82, 0.18);
  --gold-line: rgba(201, 165, 82, 0.35);
  --silver: #8a97aa;
  --bg: #0d1018;
  --bg1: #131822;
  --bg2: #1a2033;
  --text: #f0ece3;
  --text2: #9ba5b4;
  --text3: #6b7585;
  --border: rgba(255,255,255,0.07);
  --serif: 'Spectral', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(13, 16, 24, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 66px; height: 66px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--text); text-transform: uppercase;
}
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links a { color: var(--text2); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid var(--gold-line); color: var(--gold);
  text-decoration: none; transition: all 0.25s;
}
.nav-cta:hover,
.nav-cta.active { background: var(--gold); color: var(--bg); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--text); margin: 5px 0; transition: all 0.3s; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--bg); padding: 100px 48px 48px;
  flex-direction: column; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--text); text-decoration: none; letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border); padding-bottom: 24px;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 140px 48px 72px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,165,82,0.05) 0%, transparent 65%);
}
.page-header-grid {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-header-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.page-header-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.page-header-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); display: block; }
.page-header h1 {
  font-family: var(--serif); font-size: clamp(38px, 5vw, 68px);
  font-weight: 300; line-height: 1.06; letter-spacing: -0.01em; margin-bottom: 20px;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header-sub { font-size: 15px; color: var(--text2); line-height: 1.8; max-width: 560px; }

/* ── SECTION COMMONS ── */
section { padding: 100px 48px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); display: block; }
.section-title {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: 15px; color: var(--text2); line-height: 1.85; max-width: 600px; }
.gold-rule { width: 48px; height: 1px; background: var(--gold); margin: 32px 0; }

/* ── BUTTONS ── */
.btn-primary {
  padding: 14px 32px; background: var(--gold); color: var(--bg);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: all 0.25s var(--ease); border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: #e0b85c; transform: translateY(-1px); }
.btn-ghost {
  padding: 14px 32px; border: 1px solid var(--border); color: var(--text2);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold-line); color: var(--gold); }

/* ── CREDIBILITY STRIP ── */
.strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 32px 48px; background: var(--bg1);
}
.strip-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; }
.strip-label {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text3); white-space: nowrap; padding-right: 48px;
  border-right: 1px solid var(--border); margin-right: 48px; flex-shrink: 0;
}
.strip-logos { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; flex: 1; }
.strip-logo {
  font-family: var(--serif); font-size: 15px; font-weight: 500;
  color: var(--text3); letter-spacing: 0.06em; transition: color 0.2s; white-space: nowrap;
}
.strip-logo:hover { color: var(--silver); }

/* ── FOOTER ── */
footer { background: var(--bg1); border-top: 1px solid var(--border); padding: 48px; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 14px; color: var(--text3); }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 13px; letter-spacing: 0.1em; color: var(--text3);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  section { padding: 72px 24px; }
  .page-header { padding: 120px 24px 56px; }
  .strip { padding: 24px; }
  footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .strip-label { border-right: none; padding-right: 0; margin-right: 0; }
}
