:root {
  --cream: #ede2c6;
  --cream-soft: #e3d5b2;
  --cream-deep: #d9c89e;
  --ink: #1a1814;
  --muted: #6b5e47;
  --mustard: #d9a93f;
  --mustard-dark: #b8881a;
  --teal: #6e9088;
  --teal-dark: #547069;
  --red: #c0392b;
  --red-dark: #9c2c20;
  --border: #c9b78f;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3,
.brand-wordmark,
.eyebrow {
  font-family: "Bevan", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

a { color: var(--red); }
a:hover { color: var(--red-dark); }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  border-bottom: 2px solid var(--border);
  padding: 1rem 0;
  background: var(--cream);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  text-decoration: none;
  color: var(--ink);
}
.brand-wordmark {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.nav-link:hover {
  color: var(--ink);
  border-bottom-color: var(--mustard);
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: var(--cream);
  text-align: center;
}
.mission-graphic {
  max-width: 100%;
  width: 760px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Sections */
section { padding: 4rem 0; }

/* Stress Buddy section */
.game {
  background: var(--cream-soft);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--teal-dark);
  margin: 0 0 0.5rem;
}
.game h2 {
  font-size: 3rem;
  margin: 0 0 1rem;
  line-height: 1;
}
.game-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.game-body {
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
  color: var(--muted);
}

/* Buttons */
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: inherit;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

/* About */
.about {
  background: var(--cream);
  text-align: center;
}
.about h2 {
  font-size: 2.25rem;
  margin: 0 0 1.5rem;
}
.about p {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--ink);
}

/* Stay in the loop */
.loop {
  background: var(--cream-deep);
  border-top: 2px solid var(--border);
  text-align: center;
}
.loop h2 {
  font-size: 2.25rem;
  margin: 0 0 1rem;
}
.loop p {
  max-width: 34rem;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  color: var(--ink);
}

/* Corporate (the bit) */
.corporate {
  background: var(--cream);
  padding: 5rem 0;
  border-top: 2px solid var(--border);
}
.corporate h2 {
  text-align: center;
  font-size: 2.25rem;
  margin: 0 0 2.5rem;
}
.report {
  max-width: 540px;
  margin: 0 auto;
  background: #d9c89e;
  border: 1px solid var(--ink);
  box-shadow: 0 0 0 5px var(--cream), 0 0 0 6px var(--ink);
  padding: 2.5rem 2rem;
  font-family: "Special Elite", "Courier New", monospace;
  color: var(--ink);
}
.report-header {
  text-align: center;
  border-bottom: 1px dashed var(--ink);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.report-meta {
  margin: 0.25rem 0;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  font-family: "Special Elite", "Courier New", monospace;
}
.corporate-chart {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto 1.5rem;
}
.report-body p {
  margin: 0 0 1rem;
  line-height: 1.55;
  font-size: 0.95rem;
  font-family: "Special Elite", "Courier New", monospace;
}
.report-subhead {
  font-weight: 400;
  margin-top: 1.25rem !important;
  text-decoration: underline;
}
.report-body ul {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
}
.report-body li {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  font-family: "Special Elite", "Courier New", monospace;
  line-height: 1.4;
}
.report-sign {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--ink);
  text-align: right;
}
.report-sign p {
  margin: 0;
  font-size: 0.875rem;
  font-family: "Special Elite", "Courier New", monospace;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { margin: 0; }
.footer-links { margin: 0; }
.footer-links a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-links a:hover {
  color: var(--mustard);
  border-bottom-color: var(--mustard);
}
.sep {
  color: var(--muted);
  margin: 0 0.5rem;
}

/* Mobile */
@media (max-width: 640px) {
  .game h2 { font-size: 2.25rem; }
  .game-tagline { font-size: 1.25rem; }
  .about h2, .loop h2 { font-size: 1.75rem; }
  .nav { gap: 1rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
