:root {
  --bg: #f5c06a;
  --text: #2b1c0e;
  --muted: #5c4527;
  --accent: #2b1c0e;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 32rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.icons a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease;
}

.icons a:hover {
  opacity: 0.6;
}

.case-studies-link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 1rem;
}

.case-studies-link:hover {
  opacity: 0.6;
}

.page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.back-link {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 2rem;
}

.back-link:hover {
  text-decoration: underline;
}

.page h1 {
  text-align: left;
}

.case-study {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(43, 28, 14, 0.25);
}

.case-study:first-of-type {
  border-top: none;
}

.case-study h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.case-study p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
