/* Reset + Typography + Layout */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--green);
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.35rem; margin-bottom: var(--space-md); }
h3 { font-size: 1.1rem; margin-bottom: var(--space-sm); }

p { margin-bottom: var(--space-sm); }

a {
  color: var(--green);
  text-decoration: none;
}

/* ── Nav ──────────────────────────────────── */
.nav {
  background: linear-gradient(180deg, #0F1D0F 0%, var(--green) 60%, var(--green-light) 100%);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 var(--space-xl);
}

.nav__logo {
  height: 52px;
  width: auto;
}

.nav__title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-left: var(--space-lg);
  letter-spacing: 0.02em;
}

.nav__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
  margin-left: var(--space-md);
}

.nav__subtitle {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  margin-left: var(--space-md);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── Main ─────────────────────────────────── */
.main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl);
}

/* ── Footer ───────────────────────────────── */
.footer {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--border-light);
}
