@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --fairway: #16332B;
  --turf: #3F6B4F;
  --sand: #C8A667;
  --paper: #F3EEE2;
  --ink: #1B1B16;
  --flag: #B0402B;
  --muted: #8a7f66;
  --body-text: #4a4636;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.display {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flag);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid rgba(22,51,43,0.15);
  padding: 1.1rem 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.brand svg { flex-shrink: 0; }
.brand span {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.2rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--body-text);
}
.nav a:hover, .nav a.active { color: var(--fairway); }
.nav .cta {
  background: var(--flag);
  color: var(--paper);
  padding: 0.6rem 1.15rem;
  border-radius: 3px;
  font-weight: 600;
}
.nav .cta:hover { background: #953423; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(22,51,43,0.15);
  margin-top: 5rem;
  padding: 3rem 0 2.5rem;
  background: var(--fairway);
  color: rgba(243,238,226,0.85);
}
.site-footer .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 0.9rem;
}
.site-footer a {
  display: block;
  text-decoration: none;
  color: rgba(243,238,226,0.85);
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}
.site-footer a:hover { color: #fff; }
.site-footer .brand span { color: var(--paper); }
.site-footer .foot-tag {
  font-size: 0.88rem;
  color: rgba(243,238,226,0.6);
  max-width: 280px;
  margin-top: 0.75rem;
}
.foot-bottom {
  max-width: 1180px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid rgba(243,238,226,0.15);
  font-size: 0.78rem;
  color: rgba(243,238,226,0.5);
}

@media (max-width: 780px) {
  .nav { display: none; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
}
