:root {
  --bg: #0e0d0b;
  --bg-alt: #171510;
  --bg-surface: #1f1d17;
  --amber: #d4a843;
  --amber-dim: #a07a28;
  --cream: #f0ead8;
  --cream-dim: #b8b09a;
  --ink: #0e0d0b;
  --text: #e8e2d0;
  --text-dim: #8a8270;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid rgba(212,168,67,0.15);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
}

/* ─── HERO ─── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 50%, rgba(212,168,67,0.04) 0%, transparent 70%),
    linear-gradient(160deg, transparent 40%, rgba(212,168,67,0.03) 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -2px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 540px;
  font-weight: 300;
}
.hero-ornament {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ornament-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--amber-dim), transparent);
}
.ornament-box {
  width: 14px;
  height: 14px;
  border: 1px solid var(--amber);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* ─── THECOORD ─── */
.thecoord {
  background: var(--bg-alt);
  padding: 100px 48px;
  border-top: 1px solid rgba(212,168,67,0.08);
}
.thecoord-inner {
  max-width: 900px;
  margin: 0 auto;
}
.thecoord-mark {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}
.thecoord-headline {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.thecoord-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 660px;
  font-weight: 300;
}

/* ─── CAPABILITIES ─── */
.capabilities {
  background: var(--bg);
  padding: 100px 48px;
}
.capabilities-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cap-section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 48px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.08);
}
.cap-item {
  background: var(--bg-alt);
  padding: 40px 36px;
}
.cap-icon {
  color: var(--amber);
  font-size: 8px;
  margin-bottom: 16px;
}
.cap-item h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.cap-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
  font-weight: 300;
}

/* ─── WORKFLOW ─── */
.workflow {
  background: var(--bg-alt);
  padding: 100px 48px;
  border-top: 1px solid rgba(212,168,67,0.08);
}
.workflow-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.workflow-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 60px;
}
.workflow-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
}
.step-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: rgba(212,168,67,0.15);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-dim);
  font-weight: 300;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(212,168,67,0.4), rgba(212,168,67,0.1));
  flex-shrink: 0;
  margin: 0 20px;
  align-self: flex-start;
  margin-top: 28px;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--bg);
  padding: 120px 48px;
  border-top: 1px solid rgba(212,168,67,0.08);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}
.manifesto-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid rgba(212,168,67,0.15);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.footer-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.3px;
}
.footer-loc {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}
.footer-tag {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 28px; }
  .thecoord, .capabilities, .workflow, .manifesto { padding: 80px 28px; }
  .footer { padding: 40px 28px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cap-grid { grid-template-columns: 1fr; }
  .hero-headline { letter-spacing: -1px; }
  .hero-ornament { display: none; }
  .nav { padding: 20px 28px; }
}