:root {
  --navy: #0F1B2D;
  --navy-light: #1A2D45;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --gold: #C8973A;
  --gold-light: #DDB55A;
  --text-dark: #0F1B2D;
  --text-mid: #4A5568;
  --text-light: #F5F0E8;
  --text-muted: #8A96A0;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover { color: var(--text-dark); }

.nav-link--active {
  color: var(--text-dark);
  font-weight: 600;
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 60px;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.08;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 480px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compass-mark {
  width: 260px;
  height: 260px;
  opacity: 0.85;
}

.hero-stats {
  max-width: 1200px;
  margin: 60px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid rgba(15, 27, 45, 0.1);
  position: relative;
  z-index: 1;
}

.stat {
  flex: 1;
  padding: 0 40px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(15, 27, 45, 0.12);
  flex-shrink: 0;
}

/* ── Approach ── */
.approach {
  background: var(--navy);
  padding: 100px 48px;
  color: var(--text-light);
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 72px;
}

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--text-light);
  line-height: 1.12;
}

.section-title.light { color: var(--text-light); }

.approach-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.approach-step {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.approach-step:nth-child(even) {
  padding-right: 0;
  padding-left: 40px;
}

.approach-step:nth-last-child(-n+2) {
  border-bottom: none;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  margin-top: 4px;
  min-width: 24px;
}

.step-title {
  font-size: 22px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.65;
}

/* ── Engagements ── */
.engagements {
  background: var(--cream-dark);
  padding: 100px 48px;
}

.engagements-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.engagements-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.engagements-lead {
  margin-top: 24px;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
}

.engagements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.engagement-card {
  background: var(--cream);
  padding: 48px;
  border: 1px solid rgba(15, 27, 45, 0.06);
  transition: border-color 0.2s;
}

.engagement-card:hover {
  border-color: var(--gold);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(200, 151, 58, 0.08);
  border-radius: 4px;
}

.card-title {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
}

.card-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Principles ── */
.principles {
  background: var(--navy);
  padding: 100px 48px;
  color: var(--text-light);
}

.principles-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.principles-title {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--text-light);
  margin-top: 20px;
  line-height: 1.18;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.principle {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.principle:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.principle-marker {
  width: 3px;
  min-height: 100%;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
}

.principle-text h4 {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 600;
}

.principle-text p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  background: var(--cream);
  padding: 100px 48px 120px;
  text-align: center;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 48px;
}

.closing-headline {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.12;
}

.closing-body {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 48px;
}

.closing-mark {
  display: flex;
  justify-content: center;
  opacity: 0.6;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.footer-tagline {
  display: block;
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  margin-top: 4px;
}

.footer-meta {
  font-size: 12px;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-sep { opacity: 0.4; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-bg-pattern { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 42px; }
  .hero-stats { flex-direction: column; gap: 24px; padding-top: 32px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .approach { padding: 72px 24px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-step:nth-child(even) { padding-left: 0; }
  .approach-step { padding-right: 0; }
  .engagements { padding: 72px 24px; }
  .engagements-grid { grid-template-columns: 1fr; }
  .engagement-card { padding: 36px; }
  .principles { padding: 72px 24px; }
  .principles-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 72px 24px 96px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-title { font-size: 30px; }
  .principles-title { font-size: 28px; }
  .closing-headline { font-size: 30px; }
  .engagement-card { padding: 28px; }
}