:root {
  --bg: #fbfaf7;
  --bg-alt: #f2efe9;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #55524c;
  --muted: #8a867e;
  --accent: #9a6b3f;      /* muted bronze — solid, no gradients */
  --accent-ink: #7c5430;
  --line: #e3ded4;
  --radius: 4px;
  --max: 1080px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

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

.brand { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.2px;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--ink-soft);
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.5px;
  max-width: 780px;
  margin-bottom: 26px;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 38px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 44px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.card {
  background: var(--surface);
  padding: 34px 30px;
  transition: background 0.2s;
}
.card:hover { background: #fdfcfa; }

.card-icon {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--serif);
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.card p { color: var(--ink-soft); }
.card-link {
  margin-top: 18px;
  font-size: 0.95rem;
}
.card-link a {
  color: var(--accent);
  text-decoration: underline;
}

.card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 16px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-grid p { color: var(--ink-soft); margin-bottom: 18px; }

.stats { list-style: none; display: grid; gap: 0; }
.stats li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.stats li:last-child { border-bottom: 1px solid var(--line); }
.stats strong {
  display: block;
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
}
.stats span { color: var(--muted); font-size: 0.92rem; }

/* Contact */
.contact { text-align: center; max-width: 620px; margin: 0 auto; }
.contact p { color: var(--ink-soft); margin-bottom: 30px; font-size: 1.1rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links a { color: var(--ink-soft); }
.footer-links a:hover { color: var(--accent); }

/* Legal / privacy page */
.legal {
  max-width: 760px;
  padding-top: 64px;
  padding-bottom: 96px;
}
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.legal .updated { color: var(--muted); font-size: 0.95rem; margin-bottom: 40px; }
.legal h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 40px 0 14px;
}
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal .intro {
  font-size: 1.1rem;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 88px 0 72px; }
  .section { padding: 72px 0; }
}
