:root {
  --ink: #16130f;
  --ink-soft: #2a241c;
  --paper: #f3ece1;
  --paper-2: #e8dfd0;
  --copper: #c45c26;
  --copper-deep: #9a4318;
  --line: rgba(22, 19, 15, 0.12);
  --mute: #6d6458;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 236, 225, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--copper);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.hero {
  padding: 84px 0 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--copper-deep);
  font-weight: 600;
  margin: 0 0 14px;
}

h1,
h2,
.display {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  max-width: 14ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lede {
  max-width: 38rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.muted {
  color: var(--mute);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
}

.card,
.work-card,
.stat {
  background: #fffdf8;
  border: 1px solid var(--line);
  padding: 24px;
}

.card h3,
.work-card h3 {
  font-family: "Fraunces", Georgia, serif;
  margin: 8px 0 10px;
  font-size: 1.35rem;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-deep);
}

.work-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(22, 19, 15, 0.05), rgba(22, 19, 15, 0.72)),
    var(--panel, #c45c26);
  color: #f6efe6;
  text-decoration: none;
}

.work-card .kicker {
  color: #f0c7ae;
}

.work-a { --panel: #8b3d1c; }
.work-b { --panel: #2d4a3e; }
.work-c { --panel: #2d3a55; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
}

.band {
  background: var(--ink);
  color: var(--paper);
}

.band .muted {
  color: #c8bbaa;
}

.quote {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin: 0 0 18px;
}

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

input,
textarea,
select {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fffdf8;
  color: var(--ink);
}

.form-note {
  font-size: 0.9rem;
  color: var(--mute);
}

.page-hero h1 {
  max-width: 18ch;
}

@media (max-width: 860px) {
  .grid-3,
  .grid-2,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}
