:root {
  --page: #FDFCF8;
  --card: #F3EEE6;
  --border: #E2DDD1;
  --text: #1C1917;
  --muted: #6B6560;
  --primary: #B45309;
  --primary-hover: #92400E;
  --on-primary: #FFFFFF;
  --serif: Cambria, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); text-decoration: underline; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site {
  background: var(--page);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { height: 36px; width: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-hover); color: var(--on-primary); text-decoration: none; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 72px 0; text-align: center; }
h1, h2, h3 { font-family: var(--serif); text-wrap: balance; }
h2 { font-size: 2.2rem; line-height: 1.2; margin: 0 0 40px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Hero */
.hero { padding: 88px 0 72px; }
.hero h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 22px;
}
.hero h1 span { color: var(--primary); display: block; }
.lead { font-size: 1.25rem; color: var(--muted); max-width: 620px; margin: 0 auto 36px; }

/* Five jobs */
.jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.job { background: var(--card); border-radius: 14px; padding: 24px 22px; }
.job-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon svg { width: 26px; height: 26px; }
.num { color: #C9C0B3; font-weight: 700; }
.job h3 { margin: 0 0 8px; font-size: 1.3rem; }
.job p { margin: 0; color: var(--muted); }

.job .more { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 0.95rem; }

/* How each job works */
section.alt { background: var(--card); }
.feature { text-align: left; scroll-margin-top: 64px; }
.feature .wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}
.feature h2 { margin: 0 0 16px; }
.feature .intro { color: var(--muted); font-size: 1.1rem; margin: 0; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 24px; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.steps li::before {
  content: counter(step);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h3 { margin: 2px 0 4px; font-size: 1.15rem; }
.steps p { margin: 0; color: var(--muted); }

/* Close */
.close { background: var(--card); border-top: 1px solid var(--border); }
.close h2 { margin-bottom: 16px; }
.reach { color: var(--muted); font-size: 1.1rem; margin: 0; }

/* Footer */
footer.site {
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 960px) {
  .jobs { grid-template-columns: repeat(2, 1fr); }
  .feature .wrap { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero { padding: 56px 0; }
  .hero h1 { font-size: 1.9rem; }
  h2 { font-size: 1.7rem; }
  .jobs { grid-template-columns: 1fr; }
}
