:root {
  --navy: #0d1b2a;
  --navy-mid: #152338;
  --navy-light: #1e3a5f;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --parchment: #f9f7f2;
  --parchment-dark: #f0ede6;
  --white: #ffffff;
  --text-primary: #0d1b2a;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --border: #e2e0db;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--parchment);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--navy);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}
.hero-visual {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}
.hero-chart-panel {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chart-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  flex: 1;
}
.chart-bar {
  flex: 1;
  background: rgba(201, 168, 76, 0.25);
  border-radius: 2px 2px 0 0;
  transition: height 0.6s ease;
}
.chart-bar-accent { background: var(--gold); }
.chart-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.chart-stat {}
.chart-stat-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
}
.chart-stat-label {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.hero-accent-panel {
  width: 140px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 2px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.accent-line {
  position: absolute;
  background: rgba(201, 168, 76, 0.3);
}
.accent-line-1 { width: 1px; height: 60%; top: 0; left: 20px; }
.accent-line-2 { width: 40%; height: 1px; bottom: 30px; right: 0; }
.accent-triangle {
  width: 0; height: 0;
  border-left: 40px solid transparent;
  border-bottom: 70px solid rgba(201, 168, 76, 0.15);
  position: absolute;
  bottom: 0;
  right: 0;
}
.accent-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  position: absolute;
}
.accent-dot-1 { top: 15px; right: 15px; }
.accent-dot-2 { bottom: 25px; left: 25px; opacity: 0.8; }
.accent-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.accent-text-top {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.accent-text-bottom {
  font-size: 9px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.hero-bottom-bar {
  background: rgba(201, 168, 76, 0.08);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0.875rem 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.hero-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* MANIFESTO */
.manifesto {
  background: var(--parchment);
  padding: 6rem 2rem;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.manifesto-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.manifesto-text-accent {
  color: var(--text-primary);
  font-weight: 500;
}
.manifesto-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2.5rem 0;
}
.manifesto-divider-text {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
}

/* SERVICES */
.services {
  background: var(--parchment-dark);
  padding: 6rem 2rem;
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.08);
}
.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.service-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--parchment-dark);
  line-height: 1;
  letter-spacing: -1px;
}
.service-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.service-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}
.service-pricing {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-price {
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
}
.service-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--parchment);
  padding: 6rem 2rem;
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.philosophy-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.philosophy-credentials {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}
.credential-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.philosophy-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-visual {
  width: 100%;
  max-width: 360px;
  background: var(--navy);
  border-radius: 2px;
  overflow: hidden;
  padding: 2rem;
}
.p-visual-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.p-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.p-dot-accent { background: var(--gold); }
.p-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.p-line-long { flex: 2; }
.p-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 1.5rem;
}
.p-grid-row { display: contents; }
.p-grid-cell {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
}
.p-gold { background: rgba(201, 168, 76, 0.3); }
.p-visual-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* OUTCOMES */
.outcomes {
  background: var(--parchment-dark);
  padding: 6rem 2rem;
}
.outcomes-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.outcomes-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.outcome-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.outcome-item:first-child { border-top: 1px solid var(--border); }
.outcome-marker {
  padding-top: 2px;
  flex-shrink: 0;
}
.outcome-arrow { color: var(--gold); }
.outcome-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.outcome-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* CLOSING */
.closing {
  background: var(--navy);
  padding: 8rem 2rem;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-accent {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 3rem;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
}
.closing-sub p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* FOOTER */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.footer-logo-mark {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 700;
}
.footer-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.footer-meta {
  flex: 1;
}
.footer-location {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer-brand {
  flex-shrink: 0;
}
.footer-brand-text {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; }
  .hero-visual { max-width: 480px; }
  .services-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-right { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 2rem; }
  .hero-bottom-bar { flex-direction: column; gap: 0.5rem; align-items: center; }
  .nav-links { gap: 1rem; }
  .service-card { padding: 1.5rem; }
}