@font-face {
  font-family: 'Boycott';
  src: url('/assets/fonts/Boycott.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AlternateGothic';
  src: url('/assets/fonts/AlternateGothic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:           #0d0d0b;
  --bg-rule:      #201e19;
  --text:         #f0ebe0;
  --text-muted:   #6b6358;
  --orange:       #e05c0a;
  --orange-dim:   #7a3206;
  --max-width:    660px;
}

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

html {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  padding: 3rem 1.5rem 4rem;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Header ───────────────────────────────────── */

header {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--orange);
}

.logo-mark {
  display: block;
  height: 80px;
  width: auto;
  margin-left: -6px; /* optically align grid edge with text */
  margin-bottom: 0.5rem;
}

.wordmark {
  font-family: 'AlternateGothic', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.availability {
  font-family: 'Boycott', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── Pitch ────────────────────────────────────── */

.pitch {
  margin-bottom: 2.5rem;
}

.pitch p {
  margin-bottom: 1.2rem;
}

.pitch p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.1rem;
}

/* ── Capabilities ─────────────────────────────── */

.capabilities {
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-rule);
}

.capabilities ul {
  list-style: none;
}

.capabilities li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--bg-rule);
}

.capabilities li:first-child {
  border-top: 1px solid var(--bg-rule);
}

.capability {
  display: block;
  font-variant: small-caps;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

/* ── Contact ──────────────────────────────────── */

.contact {
  padding-top: 2rem;
  border-top: 1px solid var(--bg-rule);
}

.cta {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.links a {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--orange-dim);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.links a:hover {
  color: var(--text);
  border-color: var(--text);
}

/* ── Footer ───────────────────────────────────── */

footer {
  max-width: var(--max-width);
  margin: 3.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bg-rule);
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  body {
    padding: 2rem 1.25rem 3rem;
  }

  .wordmark {
    font-size: 1.875rem;
  }
}
