:root {
  --navy-950: #0b1220;
  --navy-900: #131b2c;
  --ink: #1c2130;
  --cream: #faf7f2;
  --cream-alt: #f1ece1;
  --brass: #a9793f;
  --brass-strong: #8c5f2c;
  --brass-light: #d7bd8f;
  --steel: #58677a;
  --border: #e3dbca;
  --white: #ffffff;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy-950);
}

p { margin: 0 0 1em; }

a { color: inherit; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(215, 189, 143, 0.2);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.brand span { color: var(--brass-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.nav-links a:not(.btn) {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:not(.btn):hover { color: var(--brass-light); }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 13px 26px;
  font-size: 0.95rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn--primary {
  background: var(--brass);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(169, 121, 63, 0.35);
}

.btn--primary:hover { background: var(--brass-strong); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--navy-950);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover { border-color: var(--brass); color: var(--brass-strong); }

.btn--small { padding: 9px 18px; font-size: 0.85rem; }

.btn--large { padding: 17px 34px; font-size: 1.05rem; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 60%, #1c2b3f 100%);
  color: var(--white);
  padding: clamp(72px, 12vw, 130px) 0 clamp(64px, 10vw, 100px);
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  text-align: center;
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brass-light);
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.hero .btn--ghost:hover { border-color: var(--brass-light); color: var(--brass-light); }

/* Stats band */
.stats-band {
  background: var(--navy-900);
  border-top: 1px solid rgba(215, 189, 143, 0.15);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 52px) clamp(20px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat { display: flex; flex-direction: column; gap: 8px; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--brass-light);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* Sections */
.section { padding: clamp(64px, 9vw, 100px) 0; }

.section--alt { background: var(--cream-alt); }

.section--cta {
  background: var(--navy-950);
  color: var(--white);
}

.section--cta h2 { color: var(--white); }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.section-inner--narrow { max-width: 760px; text-align: center; }

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.section--alt h2, .section:not(.section--alt):not(.section--cta) h2 { text-align: left; }

.section-inner--narrow h2 { text-align: center; }

.lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--steel);
  max-width: 780px;
  margin-bottom: 40px;
}

.lede--small { font-size: 1rem; margin-bottom: 0; }

.section--cta .lede { color: rgba(255,255,255,0.78); margin-left: auto; margin-right: auto; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
}

.section--alt .card { background: var(--white); }

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card p { color: var(--steel); margin-bottom: 0; font-size: 0.95rem; }

.card--industry .card-stat {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  border-left: 3px solid var(--brass);
  padding-left: 14px;
  margin-bottom: 16px;
}

.card--industry p:last-child { color: var(--steel); font-size: 0.92rem; }

.disclosure {
  margin-top: 36px;
  padding: 20px 24px;
  background: rgba(169, 121, 63, 0.08);
  border: 1px solid rgba(169, 121, 63, 0.25);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--steel);
  max-width: 780px;
}

/* Footer */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(215, 189, 143, 0.15);
  padding: 28px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

.footer-note { color: rgba(255,255,255,0.45); }

/* Responsive */
@media (max-width: 860px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: 1fr; }
  .section--alt h2, .section:not(.section--alt):not(.section--cta) h2 { text-align: center; }
  .lede { margin-left: auto; margin-right: auto; text-align: center; }
}
