:root {
  --paper: #f7f2ea;
  --paper-deep: #ede3d4;
  --card: #fffaf2;
  --ink: #1e1c18;
  --muted: #625d54;
  --clay: #a85238;
  --sage: #61745f;
  --sage-soft: #e3eadc;
  --line: rgba(30, 28, 24, 0.15);
  --shadow: 0 24px 70px rgba(30, 28, 24, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

p {
  color: var(--muted);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 34px;
}

.btn {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--paper);
  transform: translateY(-2px);
}

header {
  background: rgba(247, 242, 234, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
}

.brand span {
  color: var(--clay);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  padding: 86px 0 78px;
}

.hero-grid {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr minmax(300px, 420px);
}

.eyebrow {
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  max-width: 12ch;
}

.lede {
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.28;
  margin: 28px 0 24px;
  max-width: 30ch;
}

.summary-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.summary-card h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.summary-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.summary-card li {
  color: var(--muted);
}

section {
  padding: 84px 0;
}

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

.split {
  display: grid;
  gap: 56px;
  grid-template-columns: 0.9fr 1.1fr;
}

.split h2,
.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.copy-stack {
  display: grid;
  gap: 18px;
}

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

.item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.item h3 {
  font-size: 1.42rem;
  margin-bottom: 12px;
}

.section-head {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.85fr 1.15fr;
  margin-bottom: 38px;
}

.contact-card {
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  padding: 42px;
}

.contact-card h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4rem);
}

.contact-card p {
  color: rgba(247, 242, 234, 0.76);
}

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

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  padding: 26px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

@media (max-width: 860px) {
  .wrap {
    padding: 0 22px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    height: auto;
    padding: 18px 22px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-grid,
  .split,
  .section-head,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .list-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  section {
    padding: 64px 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }
}
