:root {
  --bg: #14110e;
  --paper: #1c1814;
  --ink: #efe6d6;
  --muted: #b5a894;
  --line: #3a3228;
  --accent: #c4a36a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 500px at 10% -10%, #2a241c 0%, transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.6;
}

.page {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mark {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
}

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

nav a[aria-current="page"],
nav a:hover {
  color: var(--ink);
}

.hero { padding: 48px 0 24px; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.portrait {
  width: 168px;
  height: 210px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 600;
}

.lede {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.sub, .muted, footer { color: var(--muted); }

a { color: var(--accent); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn {
  display: inline-block;
  padding: 8px 14px;
  background: var(--accent);
  color: #1a140c;
  text-decoration: none;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.card {
  display: block;
  padding: 18px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}

.card h2 { margin: 0 0 8px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

.prose { padding-top: 40px; }
.prose h2 { margin-top: 32px; font-size: 1.25rem; }

.offers article {
  padding: 4px 0 8px;
}

.job {
  margin: 28px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.job h2 {
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.job h2 span {
  font-weight: 400;
  color: var(--muted);
}

.job .muted { margin: 0 0 10px; font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.85rem; }

.list { padding-left: 18px; }
.list li { margin: 12px 0; }
.list .muted {
  display: block;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.links { padding-left: 18px; }

footer {
  margin-top: 56px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .site-header { flex-direction: column; }
  .hero-split { grid-template-columns: 1fr; }
  .portrait { width: 132px; height: 165px; }
}
