:root {
  color-scheme: light;
  --ink: #493b35;
  --muted: #74655e;
  --paper: #fffaf2;
  --cream: #f8ecdc;
  --coral: #c75d4a;
  --coral-dark: #9e4133;
  --sage: #718a76;
  --line: #e5d4c1;
  --shadow: 0 18px 50px rgba(88, 61, 47, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 0%, rgba(211, 133, 111, 0.15), transparent 36rem),
    var(--paper);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--coral-dark); }
a:hover { color: var(--coral); }

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  padding: 24px 0;
  border-bottom: 1px solid rgba(229, 212, 193, 0.8);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  box-shadow: 0 5px 16px rgba(88, 61, 47, 0.18);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
}

.nav-links a { text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.15; }

h1 {
  margin: 0 0 24px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 74px);
  letter-spacing: -0.035em;
}

h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
}

h3 { margin: 0 0 10px; font-size: 20px; }

.lede {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 23px);
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 15px;
  border: 1px solid #d8c2ae;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--sage);
  font-size: 15px;
  font-weight: 750;
}

.hero-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-card img {
  display: block;
  width: 112px;
  height: 112px;
  margin-bottom: 26px;
  border-radius: 25px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 36px 0 84px;
}

.step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffdf9;
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--coral-dark);
  font-weight: 800;
}

.step p, .legal p, .legal li { color: var(--muted); }

.statement {
  margin-bottom: 84px;
  padding: 48px;
  border-radius: 28px;
  background: var(--cream);
}

.statement p {
  max-width: 780px;
  margin: 0;
  font-size: 20px;
}

.legal {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal h1 { font-size: clamp(40px, 6vw, 58px); }
.legal h2 { margin-top: 36px; font: 700 25px/1.25 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.legal ul { padding-left: 22px; }
.updated { margin: -10px 0 32px; color: var(--muted); }

.contact-card {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf9;
}

footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 58px 0; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { gap: 12px; }
  .statement { padding: 30px; }
  footer .wrap { flex-direction: column; }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  .hero-card { padding: 25px; }
}
