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

:root {
  --ink:      #111820;
  --slate:    #1E2E3D;
  --gold:     #B8975A;
  --gold-lt:  #D4B578;
  --fog:      #F4F2EE;
  --paper:    #FAFAF8;
  --muted:    #7A8899;
  --border:   #D8D3C8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(17, 24, 32, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 151, 90, 0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-logo span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 2px;
}

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 9px 20px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: 'CONFIDENTIAL';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(184, 151, 90, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

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

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fog);
  max-width: 800px;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--gold-lt); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(184,151,90,0.4);
  color: var(--fog);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-footer {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(184,151,90,0.15);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat { font-family: 'Cormorant Garamond', serif; }
.hero-stat-n { font-size: 36px; font-weight: 300; color: var(--gold); line-height: 1; }
.hero-stat-l { font-size: 11px; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; margin-top: 6px; }

section { padding: 100px 48px; }

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}

.challenge { background: var(--fog); }
.challenge-inner { max-width: 1100px; margin: 0 auto; }
.challenge-intro { max-width: 560px; margin-bottom: 64px; }
.challenge-intro p { font-size: 18px; font-weight: 300; color: #444; line-height: 1.7; }

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
}

.challenge-card { background: var(--fog); padding: 40px 36px; }
.challenge-card-icon { width: 40px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.challenge-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 12px; color: var(--slate); }
.challenge-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.three-cs { background: var(--slate); color: var(--fog); }
.three-cs-inner { max-width: 1100px; margin: 0 auto; }
.three-cs-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 72px; align-items: end; }
.three-cs-header h2 { color: var(--fog); }
.three-cs-header p { font-size: 16px; color: rgba(244,242,238,0.6); line-height: 1.7; }

.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(184,151,90,0.2); }

.cs-card { background: var(--slate); padding: 48px 40px; position: relative; }
.cs-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(184,151,90,0.15);
  line-height: 1;
  position: absolute;
  top: 24px; right: 32px;
}
.cs-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--gold-lt); margin-bottom: 8px; }
.cs-card-sub { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.cs-card p { font-size: 14px; color: rgba(244,242,238,0.65); line-height: 1.7; }

.pathway { background: var(--paper); }
.pathway-inner { max-width: 900px; margin: 0 auto; }
.pathway-steps { margin-top: 60px; position: relative; }
.pathway-steps::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.step { display: flex; gap: 40px; margin-bottom: 52px; position: relative; }
.step-num {
  width: 41px; height: 41px; min-width: 41px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--gold);
  background: var(--paper);
  position: relative; z-index: 1;
}
.step-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--slate); margin-bottom: 8px; margin-top: 8px; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.credentials { background: var(--ink); color: var(--fog); }
.credentials-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.credentials h2 { color: var(--fog); }
.credentials p { font-size: 16px; color: rgba(244,242,238,0.6); line-height: 1.8; margin-bottom: 20px; }

.credential-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.pill { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,151,90,0.3); padding: 7px 16px; }

.harley-block { border: 1px solid rgba(184,151,90,0.2); padding: 48px; text-align: center; }
.harley-number { font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 300; color: var(--gold); line-height: 1; }
.harley-street { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: var(--fog); letter-spacing: 0.1em; margin-top: 4px; }
.harley-city { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.harley-divider { width: 40px; height: 1px; background: var(--gold); margin: 24px auto; }
.harley-desc { font-size: 13px; color: rgba(244,242,238,0.4); line-height: 1.6; }

.cta-section { background: var(--gold); padding: 80px 48px; }
.cta-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 400; color: var(--ink); line-height: 1.2; margin-bottom: 10px; }
.cta-text p { font-size: 15px; color: rgba(17,24,32,0.65); }

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--fog);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--slate); }

footer {
  background: var(--ink);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: rgba(122,136,153,0.5); }

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  section { padding: 70px 24px; }
  .hero { padding: 100px 24px 60px; }
  .three-cs-header { grid-template-columns: 1fr; gap: 24px; }
  .cs-grid { grid-template-columns: 1fr; }
  .credentials-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
