:root {
  --cream: #faf6ee;
  --cream-deep: #eee5d8;
  --paper: #fffdf8;
  --ink: #181512;
  --muted: #6b635b;
  --rust: #c7612c;
  --rust-dark: #a9481d;
  --sage: #89aa8c;
  --line: #e2d9cc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 9px 12px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span { color: var(--rust); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}

.site-nav a {
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--ink); }

.site-nav .nav-download {
  color: var(--ink);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px clamp(24px, 8vw, 124px) 120px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 68%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--rust);
}

h1,
.how h2,
.closing h2 {
  margin: 0;
  font-size: clamp(4rem, 8.8vw, 8.3rem);
  font-weight: 720;
  letter-spacing: -.072em;
  line-height: .88;
}

.hero-intro {
  max-width: 570px;
  margin: 34px 0 36px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 19px;
  border-radius: 10px;
  background: var(--rust);
  color: white;
  font-weight: 750;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}

.button:hover { background: var(--rust-dark); transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

.text-link { text-underline-offset: 5px; }
.text-link:hover { color: var(--rust); }

.sun {
  position: absolute;
  top: 105px;
  right: clamp(-110px, 4vw, 90px);
  width: clamp(260px, 32vw, 490px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #efd3bc;
}

.trust-note {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  bottom: 78px;
  z-index: 2;
  width: min(270px, 28vw);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(70, 46, 29, .1);
  transform: rotate(-2deg);
}

.trust-note strong { display: block; margin: 16px 0 7px; line-height: 1.35; }
.trust-note p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.people-mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  background: var(--sage);
}

.people-mark i {
  width: 7px;
  height: 12px;
  display: block;
  border: 2px solid white;
  border-radius: 7px;
}

.people-mark i:nth-child(2) { height: 16px; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value { min-height: 250px; padding: 38px clamp(24px, 4vw, 64px) 44px; }
.value + .value { border-left: 1px solid var(--line); }

.value-number {
  display: block;
  margin-bottom: 45px;
  color: var(--rust);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.value h2 { margin: 0 0 10px; font-size: 1.15rem; line-height: 1.3; }
.value p { max-width: 350px; margin: 0; color: var(--muted); }

.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 160px);
  padding: 120px clamp(24px, 8vw, 124px);
}

.how .eyebrow { grid-column: 1 / -1; margin-bottom: -45px; }

.how h2 { font-size: clamp(3.5rem, 6.5vw, 6.8rem); }

.steps { margin: 0; padding: 0; list-style: none; }

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child { padding-top: 4px; }
.steps > li > span { color: var(--rust); font-size: .78rem; font-weight: 800; }
.steps strong { display: block; margin-bottom: 5px; }
.steps p { margin: 0; color: var(--muted); }

.closing {
  padding: 100px clamp(24px, 8vw, 124px) 110px;
  background: var(--rust);
  color: white;
}

.eyebrow.light { color: #ffe0cf; }
.eyebrow.light::before { background: white; }
.closing h2 { margin-bottom: 42px; }

.light-button { background: var(--paper); color: var(--ink); }
.light-button:hover { background: var(--cream-deep); }

.site-footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(24px, 5vw, 72px);
  background: var(--ink);
  color: #d5cbc0;
}

.footer-wordmark { color: white; }
.site-footer p { margin: 0; font-size: .86rem; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; }
.footer-links a { font-size: .86rem; text-decoration: none; }
.footer-links a:hover { color: white; }

.policy-page { min-height: 100vh; background: var(--cream); }

.policy-shell {
  width: min(760px, calc(100% - 42px));
  margin: 0 auto;
  padding: 80px 0 110px;
}

.policy-back { display: inline-block; margin-bottom: 48px; color: var(--muted); text-decoration: none; }
.policy-back:hover { color: var(--rust); }
.policy-shell h1 { font-size: clamp(3.2rem, 8vw, 5.8rem); }
.policy-updated { margin: 24px 0 50px; color: var(--muted); }
.policy-shell h2 { margin: 42px 0 12px; font-size: 1.35rem; line-height: 1.3; }
.policy-shell p, .policy-shell li { color: #514b45; }
.policy-shell a { color: var(--rust-dark); }
.policy-shell li + li { margin-top: 9px; }

@media (max-width: 820px) {
  .hero { min-height: 720px; align-items: flex-start; padding-top: 78px; padding-bottom: 250px; }
  .hero-copy { width: 100%; }
  .sun { top: auto; bottom: 55px; right: -55px; width: 250px; }
  .trust-note { left: 24px; right: auto; bottom: 48px; width: 250px; }
  .values { grid-template-columns: 1fr; }
  .value { min-height: auto; }
  .value + .value { border-left: 0; border-top: 1px solid var(--line); }
  .value-number { margin-bottom: 24px; }
  .how { grid-template-columns: 1fr; gap: 55px; }
  .how .eyebrow { margin-bottom: -20px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; }
  .site-footer p { text-align: left; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { min-height: 68px; }
  .site-nav > a:not(.nav-download) { display: none; }
  .hero { min-height: 700px; padding-top: 62px; }
  h1 { font-size: clamp(3.6rem, 19vw, 5.2rem); }
  .trust-note { width: 220px; padding: 20px; }
  .sun { width: 205px; }
  .how { padding-top: 86px; padding-bottom: 90px; }
  .closing { padding-top: 80px; padding-bottom: 85px; }
}

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