:root {
  --forest: #1a3a2f;
  --forest-light: #2d5a47;
  --forest-dark: #0f2519;
  --gold: #c9a84c;
  --gold-light: #dcc07a;
  --gold-dark: #a8863a;
  --ivory: #faf7f0;
  --ivory-dark: #f0ebe0;
  --ivory-mid: #e8e0d0;
  --charcoal: #2c2c2c;
  --text-muted: #6b6b6b;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ivory-mid);
  padding: 0 48px;
  height: 64px;
  display: flex; align-items: center;
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--forest);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.nav-tagline { font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.hero-eyebrow-line { display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--forest-dark);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 480px;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; margin-top: 32px; }
.hero-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
  background: var(--forest); color: var(--ivory);
  border-radius: 4px; text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.hero-cta-btn:hover { background: var(--forest-light); }
.hero-cta-btn:active { transform: translateY(1px); }
.hero-cta-sub { font-size: 14px; color: var(--text-muted); }
.hero-trust { display: flex; align-items: center; gap: 8px; margin-top: 20px; }
.trust-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: trust-pulse 2s infinite;
}
@keyframes trust-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0.1); }
}
.trust-text { font-size: 13px; color: var(--text-muted); }
.trust-text strong { color: var(--forest); }
.hero-stats { display: flex; gap: 0; margin-top: 40px; align-items: center; }
.hero-stat { padding: 0 32px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  color: var(--forest);
  display: block; line-height: 1;
}
.hero-stat-label { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-top: 6px; display: block; }
.hero-stat-div { width: 1px; height: 48px; background: var(--ivory-mid); }

/* Hero visual — CSS-only document cards */
.hero-visual { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; }
.hero-document-stack { position: relative; width: 260px; }
.doc-card {
  position: absolute;
  width: 220px; height: 160px;
  background: white;
  border: 1px solid var(--ivory-mid);
  border-radius: 6px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 4px 24px rgba(26, 58, 47, 0.08);
}
.doc-card-1 { top: 0; left: 0; transform: rotate(-3deg); z-index: 1; }
.doc-card-2 { top: 40px; left: 30px; transform: rotate(2deg); z-index: 2; }
.doc-card-3 { top: 80px; left: 10px; transform: rotate(-1deg); z-index: 3; }
.doc-card-seal {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold);
  position: absolute; top: 16px; right: 16px;
}
.doc-card-lines { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.doc-line { height: 8px; border-radius: 4px; background: var(--ivory-dark); }
.doc-line-1 { width: 70%; }
.doc-line-2 { width: 90%; }
.doc-line-3 { width: 60%; }
.doc-line-4 { width: 80%; }
.doc-card-badge {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--forest); color: white;
  padding: 4px 10px; border-radius: 20px;
  position: absolute; bottom: 14px; left: 20px;
}
.hero-filter-arc {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  width: 120px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.filter-circle { border-radius: 50%; border: 2px solid var(--gold); opacity: 0.4; }
.filter-1 { width: 80px; height: 80px; }
.filter-2 { width: 55px; height: 55px; }
.filter-3 { width: 30px; height: 30px; }
.filter-label {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-align: center; writing-mode: vertical-rl;
  margin-top: 8px;
}
.hero-bottom-rule {
  max-width: 1200px; margin: 80px auto 0; width: 100%;
  display: flex; align-items: center; gap: 24px;
}
.hero-rule-line { flex: 1; height: 1px; background: var(--ivory-mid); }
.hero-rule-text { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 48px;
  background: var(--forest-dark);
  color: white;
}
.manifesto-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 80px 1fr; gap: 48px; align-items: start;
}
.manifesto-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 300;
  color: var(--gold); line-height: 1; padding-top: 8px;
}
.manifesto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; margin-bottom: 32px;
  color: var(--gold-light);
}
.manifesto-body p {
  font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

.manifesto--why {
  background: var(--forest);
}
.manifesto-cta-pitch {
  color: var(--gold-light) !important;
  font-weight: 500;
}
.manifesto-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.manifesto-list li {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}
.manifesto-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.manifesto-list strong { color: var(--gold-light); }

/* ── SECTION SHARED ── */
.section-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 20px; font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 400;
  line-height: 1.15; color: var(--forest-dark);
  margin-bottom: 64px;
}

/* ── VERTICALS ── */
.verticals { padding: 120px 48px; background: var(--ivory); }
.verticals-header { max-width: 1200px; margin: 0 auto 80px; }
.verticals-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.vertical-card {
  background: white; padding: 40px 32px;
  border: 1px solid var(--ivory-mid);
  transition: border-color 0.2s;
}
.vertical-card:hover { border-color: var(--gold-dark); }
.vertical-icon { color: var(--forest); margin-bottom: 24px; }
.vertical-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300; color: var(--ivory-mid);
  line-height: 1; margin-bottom: 16px;
}
.vertical-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--forest);
  margin-bottom: 16px; line-height: 1.2;
}
.vertical-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px; }
.vertical-detail { display: flex; flex-wrap: wrap; gap: 8px; }
.vertical-detail-tag {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ivory-dark); color: var(--text-muted);
  padding: 4px 10px; border-radius: 20px;
}

/* ── PROCESS ── */
.process { padding: 120px 48px; background: var(--ivory-dark); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-header { margin-bottom: 80px; }
.process-steps { display: flex; align-items: flex-start; gap: 0; margin-bottom: 80px; }
.process-step { flex: 1; padding: 0 48px; }
.process-step:first-child { padding-left: 0; }
.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 300; color: var(--forest); line-height: 1; margin-bottom: 24px;
}
.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: var(--forest); margin-bottom: 16px;
}
.process-step-desc { font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.process-connector {
  width: 1px; background: var(--ivory-mid);
  align-self: stretch; min-height: 120px; margin-top: 20px;
}
.process-quote { text-align: center; }
.process-blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-style: italic; font-weight: 400;
  color: var(--forest); max-width: 600px; margin: 0 auto; line-height: 1.4;
}

/* ── PRICING ── */
.pricing { padding: 120px 48px; background: var(--ivory); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; max-width: 800px; margin: 0 auto; }
.pricing-card { background: white; border: 1px solid var(--ivory-mid); padding: 48px 40px; }
.pricing-card-premium { border-color: var(--forest); }
.pricing-tier-label {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--ivory-dark); color: var(--text-muted);
  display: inline-block; padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.pricing-card-premium .pricing-tier-label { background: var(--forest); color: white; }
.pricing-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.pricing-amount { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 600; color: var(--forest); line-height: 1; }
.pricing-period { font-size: 15px; color: var(--text-muted); }
.pricing-tagline { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pricing-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--charcoal); }
.pricing-feature-check {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center;
}
.pricing-feature-check::after {
  content: ''; display: block; width: 6px; height: 10px;
  border: 2px solid white; border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}
.pricing-feature-x {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%; background: var(--ivory-dark); display: flex; align-items: center; justify-content: center;
}
.pricing-feature-x::after {
  content: ''; display: block; width: 10px; height: 2px;
  background: var(--text-muted); border-radius: 1px;
}
.pricing-feature-muted { color: var(--text-muted); }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 32px; }

/* ── CLOSING ── */
.closing { padding: 120px 48px; background: var(--forest); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-rule-top { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 64px; }
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 400;
  color: var(--gold-light); line-height: 1.2; margin-bottom: 32px;
}
.closing-body { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.closing-rule-bottom { width: 60px; height: 1px; background: var(--gold); margin: 64px auto 0; }

/* ── FOOTER ── */
.footer { padding: 48px; background: var(--forest-dark); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark {
  width: 28px; height: 28px; background: rgba(201,168,76,0.3);
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 16px;
  color: var(--gold); display: flex; align-items: center; justify-content: center; border-radius: 4px;
}
.footer-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: rgba(255,255,255,0.6); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .hero { padding-top: 100px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stat-div { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-number { font-size: 48px; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; }
  .process-connector { width: 40px; height: 1px; min-height: unset; margin: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .hero, .manifesto, .verticals, .process, .pricing, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .nav { padding-left: 24px; padding-right: 24px; }
}