@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink:    #1A1A18;
  --teal:   #1D9E75;
  --surface:#F5F4F0;
  --border: rgba(0,0,0,0.08);
  --muted:  #6B6B67;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
}

/* NAV */
nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link-pill,
.nav-cta-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-link-pill {
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 9px 14px;
  background: rgba(255,255,255,0.82);
}

.nav-link-pill:hover {
  border-color: rgba(0,0,0,0.16);
  background: #fff;
}

.nav-cta-sub {
  color: #fff;
  background: var(--ink);
  padding: 10px 16px;
}

.nav-cta-sub:hover { background: #2b2b28; }

/* PAGE HERO */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 80px 48px 64px;
}

.page-hero .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 600px;
}

.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

.page-hero .meta {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* CONTENT */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 48px 96px;
}

.content h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 10px;
}

.content p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content ul, .content ol {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin: 12px 0 16px 24px;
}

.content li { margin-bottom: 6px; }

.content a {
  color: var(--teal);
  text-decoration: none;
}

.content a:hover { text-decoration: underline; }

.highlight-box {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  padding: 40px 48px;
  font-size: 13px;
}

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

footer .footer-logo {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

footer .footer-logo {
  text-decoration: none;
}

footer .footer-logo span { color: var(--teal); }

footer .footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

footer .footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

footer .footer-links a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  nav, .page-hero, .content, footer { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
}
