:root {
  --ink: #1C1C1E;
  --body: #3A3F47;
  --muted: #6B7280;
  --hairline: #E2E5E9;
  --hairline-strong: #1C1C1E;
  --bg: #F7F5F1;
  --serif: 'Liberation Serif', 'Times New Roman', Times, Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

a { color: inherit; }

img { max-width: 100%; display: block; }

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

/* ---------- Nav ---------- */

.site-header {
  border-bottom: 1px solid var(--hairline-strong);
  position: sticky;
  top: 0;
  background: rgba(247,245,241,0.96);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-lockup img { height: 18px; width: auto; }

.brand-lockup span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--body);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--hairline-strong);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-toggle:checked ~ .nav-links { max-height: 320px; }
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle-label span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    display: block;
  }
}

/* ---------- Hero / sections ---------- */

.hero {
  padding: 156px 0 80px;
  text-align: center;
}

.hero .wrap { max-width: 720px; }

.hero .accent-rule { margin-left: auto; margin-right: auto; }

.hero .lede { margin-left: auto; margin-right: auto; }

.hero .cta-row { justify-content: center; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

h1.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 52px);
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 24px;
}

.accent-rule {
  width: 40px;
  border-top: 1px solid var(--hairline-strong);
  margin: 0 0 26px;
}

.lede {
  font-size: 18px;
  line-height: 1.62;
  color: var(--body);
  max-width: 640px;
  margin: 0 0 8px;
}

.scroll-cue {
  text-align: center;
  margin-top: 56px;
  font-size: 18px;
  color: var(--muted);
}

section.block {
  padding: 96px 0;
}

/* ---------- Masthead (repeats at the top of every page) ---------- */

.masthead {
  padding: 64px 0 0;
  text-align: center;
}

.masthead-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.masthead-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

h2.title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.15;
}

p { margin: 0 0 16px; font-size: 16px; }
p:last-child { margin-bottom: 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 > div { padding-left: 0; border-left: none; }
}

.step-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}

ul.plain { margin: 0; padding-left: 18px; }
ul.plain li { margin-bottom: 10px; font-size: 16px; line-height: 1.55; }
ul.plain li:last-child { margin-bottom: 0; }

.callout {
  background: transparent;
  border: 1px solid var(--hairline);
  padding: 40px 44px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn:hover { background: var(--ink); color: var(--bg); }

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #333; color: var(--bg); }

/* ---------- Forms ---------- */

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--hairline-strong);
  background: var(--bg);
  color: var(--body);
}

.field textarea { min-height: 130px; resize: vertical; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline-strong);
  padding: 56px 0;
  margin-top: 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

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

.footer-brand img { height: 20px; width: auto; }

.footer-brand span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  max-width: 320px;
}

.footer-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}

@media (max-width: 640px) {
  .footer-row { flex-direction: column; }
  .footer-tagline { text-align: left; }
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- Statement / editorial beats ---------- */

.statement-list { margin-top: 4px; }

.statement-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 44px 0;
  border-bottom: 1px solid var(--hairline);
}
.statement-list .statement-row:last-child { border-bottom: none; }

.statement-num {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 1px;
  padding-top: 6px;
}

.statement-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.28;
  color: var(--ink);
  margin: 0 0 12px;
  max-width: 640px;
}

.big-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 680px;
  margin: 0 0 14px;
}

.feature-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.18;
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto;
}

.statement-support {
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}

@media (max-width: 720px) {
  .statement-row { grid-template-columns: 1fr; gap: 6px; padding: 32px 0; }
  .statement-num { padding-top: 0; }
}

/* ---------- Plain typographic lists (no boxes, no borders) ---------- */

.plain-list {
  margin-top: 12px;
}

.plain-list .item {
  padding: 22px 0;
}

.plain-list .item .name {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 6px;
}

.plain-list .item .desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
}

.plain-list.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
}

.plain-list.inline .item { padding: 0; }
