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

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

:root {
  --navy: #1B2A4A;
  --navy-light: #243560;
  --navy-dark: #131f38;
  --gold: #C9A227;
  --brass: #B8902F;
  --cream: #F4EFE6;
  --cream-dark: #E8E0D0;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.14);
  --font: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  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 60px;
  height: 72px;
  background: rgba(19,31,56,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wordmark {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-cta:hover { background: #d4ad2e; }

/* ── LAYOUT ──────────────────────────────────────────── */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 60px;
}

section { padding: 100px 0; }

/* ── HERO ────────────────────────────────────────────── */

.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-size: 76px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-primary:hover { background: #d4ad2e; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.btn-ghost:hover { opacity: 1; }

.btn-ghost::after {
  content: '→';
  font-size: 16px;
}

/* ── STATS BAR ───────────────────────────────────────── */

.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}

/* ── SECTION LABELS ──────────────────────────────────── */

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brass);
}

.section-headline {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
}

/* ── PROBLEM SECTION ─────────────────────────────────── */

.problem-section {
  background: var(--navy-dark);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-quote {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: 32px;
}

.problem-quote strong {
  font-weight: 600;
  color: var(--gold);
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.problem-list li::before {
  content: '—';
  color: var(--brass);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SERVICES GRID ───────────────────────────────────── */

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

.service-card {
  background: var(--navy-dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.service-card:hover { background: #1a2645; }

.service-number {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--brass);
  margin-bottom: 32px;
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.service-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 32px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-features li::before {
  content: '·';
  color: var(--gold);
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  margin-top: 32px;
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.service-link:hover { opacity: 1; }
.service-link::after { content: '→'; }

/* ── RESULTS SECTION ─────────────────────────────────── */

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

.results-section .section-eyebrow { color: var(--brass); }
.results-section .section-eyebrow::before { background: var(--brass); }
.results-section .section-headline { color: var(--navy); }
.results-section .section-sub { color: rgba(27,42,74,0.6); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.result-card {
  background: white;
  padding: 48px;
  position: relative;
}

.result-industry {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}

.result-metric {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.result-metric-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.result-desc {
  font-size: 15px;
  color: rgba(27,42,74,0.6);
  line-height: 1.6;
}

/* ── HOW IT WORKS ────────────────────────────────────── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 60px; right: 60px;
  height: 1px;
  background: var(--border-light);
}

.process-step {
  padding: 0 32px;
  padding-top: 0;
}

.process-step:first-child { padding-left: 0; }
.process-step:last-child { padding-right: 0; }

.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  background: var(--navy);
  z-index: 1;
}

.process-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA SECTION ─────────────────────────────────────── */

.cta-section {
  background: var(--gold);
  padding: 80px 0;
}

.cta-section .section-eyebrow {
  color: rgba(27,42,74,0.6);
}
.cta-section .section-eyebrow::before { background: rgba(27,42,74,0.4); }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-headline {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--navy);
  max-width: 580px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(27,42,74,0.65);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 480px;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.btn-navy:hover { background: var(--navy-light); }

/* ── FOOTER ──────────────────────────────────────────── */

footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-wordmark {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.footer-wordmark span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── PAGE HEADERS ────────────────────────────────────── */

.page-header {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
}

.page-header .section-eyebrow { margin-bottom: 24px; }

.page-title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 24px;
}

.page-title em {
  font-style: normal;
  color: var(--gold);
}

.page-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ── SERVICES PAGE ───────────────────────────────────── */

.service-full {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.service-full:last-child { border-bottom: none; }

.service-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.service-full-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.service-full-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.service-full-tagline {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.service-full-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.service-full-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 40px;
}

.deliverables-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.deliverables-list li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.deliverables-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── RESULTS PAGE ────────────────────────────────────── */

.case-study {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.case-study:last-child { border-bottom: none; }

.cs-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.cs-meta {
  position: sticky;
  top: 100px;
}

.cs-client {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cs-industry {
  font-size: 13px;
  color: var(--brass);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cs-stat {
  margin-bottom: 24px;
}

.cs-stat-number {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
}

.cs-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.cs-body h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  margin-top: 40px;
}

.cs-body h3:first-child { margin-top: 0; }

.cs-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

.cs-outcomes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.cs-outcomes li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.5;
}

.cs-outcomes li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── ABOUT PAGE ──────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.about-photo-block {
  position: sticky;
  top: 100px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.about-body h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  margin-top: 48px;
}

.about-body h3:first-child { margin-top: 0; }

.about-body p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 20px;
}

.principles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.principles-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.principle-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.principle-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

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

.team-card {
  background: var(--navy-dark);
  padding: 40px 32px;
}

.team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.team-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.team-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.team-card.open {
  border: 1px dashed rgba(201,162,39,0.3);
  background: transparent;
}

.team-card.open .team-name { color: var(--gold); }

/* ── CONTACT PAGE ────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.contact-info h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  margin-top: 40px;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
}

.expectation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.expectation-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.expectation-list li::before {
  content: '·';
  color: var(--gold);
  font-size: 20px;
  line-height: 1.1;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,162,39,0.5); }

.form-group select option { background: var(--navy); }

.form-group textarea { resize: vertical; min-height: 140px; }

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 18px 40px;
  border-radius: 2px;
  transition: background 0.2s;
  width: 100%;
}

.form-submit:hover { background: #d4ad2e; }

.form-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  text-align: center;
}
