@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --paper: #fcfbf9; --ink: #1c1a17; --mute: #6f6a63;
  --line: #e6e2dc; --espresso: #5e3a21; --roast: #2a1a10; --crema: #e9d9c7;
  --font-sans: Geist, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

main { max-width: 36rem; margin: 0 auto; padding: 6rem 1.5rem 4rem; }

.brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 3rem; }
.mark { width: 2rem; height: 2rem; color: var(--espresso); flex-shrink: 0; }
.wordmark { margin: 0; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }

.lede {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--roast);
  margin: 0 0 3.5rem;
  max-width: 30rem;
}

h2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mute);
  margin: 0 0 1rem;
}

.product {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 3.5rem;
  background: color-mix(in srgb, var(--crema) 35%, var(--paper));
}

.product a { color: var(--espresso); font-weight: 600; font-size: 1.0625rem; text-decoration: none; }
.product a:hover { text-decoration: underline; }
.product p { margin: 0.375rem 0 0; color: var(--mute); }

.contact { margin-bottom: 4rem; }
.contact a { color: var(--espresso); font-weight: 500; }

footer { border-top: 1px solid var(--line); padding-top: 1.5rem; color: var(--mute); font-size: 0.875rem; }
