:root {
  --paper: #f7f6f2;
  --paper-warm: #f0eee8;
  --surface: #fffefa;
  --ink: #1d1d1b;
  --muted: #6f706d;
  --line: #dfddd7;
  --brown: #9b654e;
  --brown-dark: #784937;
  --brown-soft: #f1e7df;
  --gold: #d2b654;
  --gold-soft: #f8efcf;
  --teal: #0d7775;
  --teal-soft: #dcefed;
  --purple: #6e668e;
  --shadow: 0 18px 48px rgba(35, 32, 27, .08);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brown-dark); text-underline-offset: .18em; }
a:hover { color: var(--ink); }

.site-header,
.site-footer,
.page-wrap,
.hero,
.content-grid,
.section-inner {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(223, 221, 215, .9);
}

.brand {
  color: var(--ink);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -.055em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
  font-size: .88rem;
}

.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 46px;
  padding: 82px 0 100px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--brown);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.08; letter-spacing: -.055em; }
h1 { max-width: 680px; margin: 0; font-size: clamp(3.6rem, 8vw, 7.5rem); font-weight: 500; }
h2 { margin: 0 0 20px; font-size: clamp(2rem, 3.2vw, 3.25rem); font-weight: 500; }
h3 { margin: 0 0 9px; font-size: 1.28rem; font-weight: 650; }

.lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 21px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  background: var(--brown);
  color: var(--surface);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--surface);
  transform: translateY(-1px);
}

.button.secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.button.secondary:hover { background: var(--surface); color: var(--ink); border-color: var(--ink); }

.hero-art {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: min(480px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 231, 223, .94) 0 42%, rgba(242, 238, 230, .45) 64%, transparent 72%);
}

.hero-art::after {
  content: "";
  position: absolute;
  width: min(290px, 55vw);
  height: 76px;
  bottom: 35px;
  border-radius: 50%;
  background: rgba(68, 52, 42, .12);
  filter: blur(24px);
}

.hero-art img {
  position: relative;
  z-index: 1;
  max-width: min(500px, 100%);
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(56, 42, 32, .16));
}

.hero-art .ring { position: absolute; right: 0; bottom: 6px; width: min(160px, 28vw); transform: rotate(-15deg); }

.band { padding: 92px 0; }
.band.mint { background: var(--paper-warm); }

.section-inner { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; }
.section-inner > p { margin: 0; color: var(--muted); font-size: 1.08rem; }

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

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

.card p { margin: 0; color: var(--muted); font-size: .97rem; }

.number {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brown-soft);
  color: var(--brown-dark);
  font-size: .82rem;
  font-weight: 800;
}

.card-grid .card:nth-child(2) .number { background: var(--gold-soft); color: #8d7622; }
.card-grid .card:nth-child(3) .number { background: var(--teal-soft); color: var(--teal); }

.callout {
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brown);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.callout p:last-child { margin-bottom: 0; }

.page-wrap { padding: 84px 0 104px; }

.page-heading {
  max-width: 820px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.page-heading h1 { font-size: clamp(3rem, 7vw, 6rem); }
.page-heading .lede { font-size: 1.12rem; }
.prose { max-width: 820px; padding-top: 6px; }
.prose h2 { margin-top: 52px; font-size: 1.8rem; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color: #575852; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 9px; }
.meta { color: var(--muted); font-size: .92rem; }

.feature-list { display: grid; gap: 16px; }
.feature-list .card { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.feature-list .number { margin: 0; background: var(--brown-soft); color: var(--brown-dark); }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
}

.site-footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; padding: 22px 0 20px; }
  .nav-links { justify-content: flex-start; gap: 8px 16px; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 26px; padding: 62px 0 70px; }
  h1 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .hero-art { min-height: 310px; }
  .hero-art img { max-height: 330px; }
  .hero-art .ring { width: 110px; right: 5%; }
  .section-inner { grid-template-columns: 1fr; gap: 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .band { padding: 64px 0; }
  .page-wrap { padding-top: 58px; }
  .site-header, .site-footer, .page-wrap, .hero, .content-grid, .section-inner { width: min(100% - 32px, 1160px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
