:root {
  --paper: #FAF7F2;
  --paper-deep: #F1ECE3;
  --ink: #1B1A17;
  --ink-soft: #4C4842;
  --line: #E1DACE;
  --accent: #1F5C4A;
  --accent-ink: #FFFFFF;
  --cta: #B3261E;
  --cta-hover: #8F1E18;
  --max: 1100px;
  font-family: ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.55; font-size: 17px; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 0.5em; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }

.site-header { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; gap: 2rem; padding: 1rem 1.5rem; background: rgba(250,247,242,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.wordmark { font-weight: 700; letter-spacing: 0.18em; text-decoration: none; font-size: 1.05rem; }
.site-nav { display: none; gap: 1.5rem; margin-left: auto; }
.site-nav a { text-decoration: none; color: var(--ink-soft); font-size: 0.95rem; }
.site-nav a:hover { color: var(--ink); }
.site-header .button { margin-left: auto; }
@media (min-width: 820px) { .site-nav { display: flex; } .site-header .button { margin-left: 0; } }

.button { display: inline-flex; align-items: center; padding: 0.8rem 1.3rem; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; }
.button-solid { background: var(--accent); color: var(--accent-ink); }
.button-solid:hover { background: #17493A; }
.button-cta { background: var(--cta); }
.button-cta:hover { background: var(--cta-hover); }
.button-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.button-ghost:hover { background: var(--paper-deep); }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.hero { max-width: var(--max); margin: 0 auto; padding: clamp(4rem, 10vw, 8rem) 1.5rem 3.5rem; }
.hero .lede { max-width: 38rem; font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--ink-soft); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--accent); font-weight: 600; margin-bottom: 1rem; }

.band { background: var(--ink); color: var(--paper); padding: 3rem 1.5rem; }
.band h3 { color: #fff; }
.band p { color: rgba(250,247,242,0.82); margin: 0; }
.grid-3 { max-width: var(--max); margin: 0 auto; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) 1.5rem; }
.section-alt { max-width: none; background: var(--paper-deep); padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); padding-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem)); }
.section-head { max-width: 40rem; margin-bottom: 2.5rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.cards { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(4, 1fr); } }
.cards li { background: var(--paper); padding: 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cards strong { font-size: 1.02rem; }
.cards span { color: var(--ink-soft); font-size: 0.95rem; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 2rem; }
.steps li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; align-items: start; }
.steps p { color: var(--ink-soft); margin: 0; max-width: 40rem; }
.step-num { width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 1px solid var(--ink); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; }

.grid-2 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.founder { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem; }
.founder .role { color: var(--accent); font-weight: 600; font-size: 0.92rem; margin-bottom: 0.8rem; }
.founder p:last-child { margin: 0; color: var(--ink-soft); }

.contact { padding-bottom: clamp(4rem, 9vw, 7rem); }
.site-footer { border-top: 1px solid var(--line); padding: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; font-size: 0.9rem; color: var(--ink-soft); }
