:root {
  --ink: #15211b;
  --muted: #5b6860;
  --paper: #f2f0e8;
  --line: #d8d7cf;
  --accent: #f05f3d;
  --green: #164c3c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
main { min-height: 100vh; }
.topbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 20px clamp(22px, 5vw, 76px);
}
.brand {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: .03em;
  text-decoration: none;
}
.mark {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: white;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}
nav { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
nav button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  padding: 7px 10px;
}
nav button.active { background: var(--ink); color: white; }
.hero {
  max-width: 1080px;
  padding: clamp(80px, 12vw, 160px) clamp(22px, 8vw, 120px) 86px;
}
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
  margin: 25px 0 30px;
  max-width: 950px;
}
.lede {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.5;
  max-width: 700px;
}
.actions { display: flex; gap: 12px; margin-top: 38px; }
.actions a, .email {
  border-radius: 999px;
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  padding: 14px 20px;
  text-decoration: none;
}
.primary, .email { background: var(--green); color: white; }
.secondary { border: 1px solid var(--ink); }
.purchase {
  align-items: center;
  background: var(--green);
  color: white;
  display: grid;
  gap: 25px;
  grid-template-columns: auto 1fr;
  padding: 35px clamp(22px, 8vw, 120px);
}
.purchase .icon {
  align-items: center;
  border: 1px solid #ffffff55;
  border-radius: 50%;
  display: flex;
  font-family: Georgia, serif;
  font-size: 36px;
  height: 68px;
  justify-content: center;
  width: 68px;
}
.purchase h2, .purchase p { margin: 0; }
.purchase h2 { font-family: Georgia, serif; font-size: 29px; font-weight: 400; }
.purchase p { color: #d6e8df; margin-top: 8px; }
.panel {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 40px;
  grid-template-columns: 70px minmax(0, 850px);
  padding: 100px clamp(22px, 8vw, 120px);
}
.panel.focus { background: #fff9ee; }
.section-number { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.panel h2 {
  font-family: Georgia, serif;
  font-size: clamp(39px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -.035em;
  margin: 0 0 24px;
}
.panel p, .panel li { color: var(--muted); font-size: 17px; line-height: 1.65; }
.panel h3 { font-size: 15px; margin: 42px 0 10px; }
.panel ol { margin: 0; padding-left: 22px; }
.panel li { border-top: 1px solid var(--line); padding: 17px 0 17px 8px; }
.email { margin-top: 20px; }
.effective { color: var(--accent) !important; font-size: 13px !important; font-weight: 800; text-transform: uppercase; }
.privacy-grid {
  display: grid;
  gap: 0 28px;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}
.privacy-grid article { border-top: 1px solid var(--line); padding: 0 0 24px; }
.privacy-grid article h3 { margin-top: 22px; }
.safety {
  background: #e3e4da;
  border-left: 4px solid var(--accent);
  margin-top: 24px;
  padding: 20px 24px;
}
footer {
  color: var(--muted);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 32px clamp(22px, 5vw, 76px);
}

@media (max-width: 720px) {
  .topbar { align-items: flex-start; gap: 18px; }
  .brand span:last-child { display: none; }
  nav { max-width: 275px; }
  .hero { padding-top: 72px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .panel { gap: 10px; grid-template-columns: 1fr; padding-block: 70px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .purchase { align-items: start; }
}
