:root {
  color-scheme: light dark;
  --canvas: #f7f8f6;
  --surface: #ffffff;
  --surface-muted: #e9ede9;
  --ink: #18211d;
  --muted: #4f5c55;
  --primary: #163d35;
  --on-primary: #ffffff;
  --accent: #c84f37;
  --border: #ccd4ce;
  --content: 1120px;
  --reading: 720px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #101512;
    --surface: #151b18;
    --surface-muted: #202824;
    --ink: #edf2ee;
    --muted: #bbc7c0;
    --primary: #9fcbbb;
    --on-primary: #0a2b23;
    --accent: #f09a80;
    --border: #39453f;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-header,
.site-footer,
.page-shell {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--primary);
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--primary);
}

.hero {
  min-height: min(720px, calc(100svh - 88px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding-block: clamp(80px, 12vw, 152px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
.display-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 7.25rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 590px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 32px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.hero-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.rhythm-panel {
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background: var(--primary);
  color: var(--on-primary);
}

.rhythm-panel::after {
  position: absolute;
  right: 28px;
  bottom: 24px;
  content: "One story · one step at a time";
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.rhythm-mark {
  width: min(58%, 250px);
  height: auto;
}

.promise {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(48px, 9vw, 128px);
  padding-block: clamp(80px, 12vw, 144px);
  border-top: 1px solid var(--border);
}

.promise h2,
.privacy-header h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

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

.principles li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.principles li:last-child {
  border-bottom: 1px solid var(--border);
}

.principle-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.principle-title {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
}

.principle-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 32px 48px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.privacy-shell {
  max-width: var(--reading);
  padding-block: clamp(64px, 10vw, 112px);
}

.privacy-header {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.privacy-header h1 {
  max-width: 10ch;
}

.privacy-summary {
  max-width: 58ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.effective-date {
  display: inline-block;
  margin: 22px 0 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.policy-section {
  padding-block: 30px;
  border-bottom: 1px solid var(--border);
}

.policy-section h2 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.policy-section p {
  margin: 10px 0 0;
  color: var(--muted);
}

.policy-section a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 780px) {
  .hero,
  .promise {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 56px;
  }

  .rhythm-panel {
    min-height: 350px;
  }

  .promise {
    gap: 48px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  .page-shell {
    width: min(100% - 32px, var(--content));
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero {
    padding-block: 64px 80px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .rhythm-panel {
    min-height: 300px;
  }

  .rhythm-panel::after {
    right: 18px;
    bottom: 16px;
    max-width: 22ch;
    text-align: right;
  }

  .site-footer {
    flex-direction: column;
  }
}

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