/* ─── TOKENS ─── */
:root {
  --bg:           #0C0B09;
  --surface:      #161410;
  --surface2:     #1C1A17;
  --border:       #2C2820;
  --border-light: #3A3530;
  --ink:          #E8E0D0;
  --ink-mid:      #B0A898;
  --ink-dim:      #706860;
  --amber:        #D4973A;
  --amber-pale:   rgba(212,151,58,0.12);
  --amber-faint:  rgba(212,151,58,0.06);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ─── */
.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── NAV ─── */
.kova-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.kova-nav .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kova-nav .brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.kova-nav .brand .dot { color: var(--amber); }

/* ─── HERO ─── */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1.25rem;
  max-width: 700px;
}

.hero-sub {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

/* ─── SECTIONS ─── */
.section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type { border-bottom: none; }

/* ─── TYPOGRAPHY COMPONENTS ─── */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.body-text {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 640px;
}

.body-text:last-child { margin-bottom: 0; }
.body-text strong { color: var(--ink); font-weight: 600; }

/* ─── BUTTONS ─── */
.cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--bg);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.cta-btn:hover { opacity: 0.88; }

/* ─── DASH LIST ─── */
.dash-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.dash-list li {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.dash-list li:last-child { border-bottom: none; }

.dash-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ink-dim);
}

/* ─── PROCESS STEPS ─── */
.step-list {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.step-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  padding-top: 3px;
}

.step-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
}

/* ─── PRINCIPLES LIST ─── */
.principles-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.principles-list li {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  padding: 0.6rem 0 0.6rem 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.principles-list li:last-child { border-bottom: none; }

.principles-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* ─── FOOTER ─── */
.kova-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.footer-brand .dot { color: var(--amber); }

.footer-tagline {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 1.25rem;
}

.footer-contact {
  font-size: 13.5px;
  color: var(--ink-mid);
  margin-bottom: 0.3rem;
}

.footer-contact a { color: var(--amber); }
.footer-contact a:hover { text-decoration: underline; }

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* ─── CONTACT PAGE ─── */
.contact-section {
  padding: 5rem 0 4rem;
  max-width: 620px;
}

.contact-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.contact-sub {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-what {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-what .eyebrow { margin-bottom: 0.75rem; }
.contact-what .dash-list { margin: 0; }

.contact-mailto {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--amber);
  border-bottom: 1px solid rgba(212,151,58,0.4);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}

.contact-mailto:hover { border-color: var(--amber); }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .wrap            { padding: 0 1.25rem; }
  .kova-nav .inner { padding: 0 1.25rem; }
  .hero            { padding: 3.5rem 0 2.5rem; }
  .section         { padding: 2.5rem 0; }
  .hero-heading    { font-size: 1.65rem; }
  .section-heading { font-size: 1.4rem; }
  .contact-section { padding: 3rem 0 2.5rem; }
}
