:root {
  --bg: #12180f;
  --paper: #f3efe6;
  --accent: #c45c26;
  --soft: #e8a87c;
  --muted: rgba(243, 239, 230, 0.68);
  --line: rgba(243, 239, 230, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  color: var(--paper);
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--bg);
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 55% at 15% -10%, rgba(196, 92, 38, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 70%, rgba(90, 120, 80, 0.18), transparent 50%),
    linear-gradient(180deg, #1a2218 0%, #0e120c 100%);
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--paper);
  text-decoration: none;
}
.top nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.top a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 600; }
.top a:hover { color: var(--soft); }

.hero {
  max-width: 44rem;
  padding: clamp(3rem, 12vh, 6rem) clamp(1rem, 4vw, 2.5rem) 2.5rem;
}
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--soft);
  margin-bottom: 0.85rem;
}
h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
h1 em { font-style: normal; color: var(--soft); }
.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.5;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 1.5rem;
}
.lead strong { color: var(--paper); }
.cta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.25rem; }
.btn {
  display: inline-block;
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  border: 1px solid var(--line);
  color: var(--paper);
}
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.ghost { background: transparent; }
.btn:hover { filter: brightness(1.08); }
.micro { font-size: 0.9rem; color: var(--muted); }
.micro strong { color: var(--paper); }

.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 40rem;
  margin: 0 clamp(1rem, 4vw, 2.5rem) 3rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) { .strip { grid-template-columns: 1fr; } }
.strip .big {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 4rem);
  color: var(--soft);
  line-height: 1;
  display: block;
}
.strip p { color: var(--muted); margin-top: 0.35rem; }

.one-job {
  max-width: 36rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem) 3rem;
}
.one-job h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  margin-bottom: 0.65rem;
}
.one-job p, .one-job li {
  color: var(--muted);
  line-height: 1.5;
  font-size: 1.05rem;
}
.one-job ol { margin: 0.75rem 0 1.25rem 1.1rem; display: grid; gap: 0.45rem; }

.foot {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem) 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.foot a { color: var(--soft); text-decoration: none; }
