:root {
  color-scheme: light;
  --paper: #f5f3ed;
  --white: #fff;
  --ink: #1d2421;
  --muted: #58615b;
  --moss: #365440;
  --moss-dark: #23382b;
  --coral: #cd684f;
  --sky: #6a9db9;
  --line: #cdd1ca;
  --focus: #146aaf;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgb(245 243 237 / 94%);
  border-bottom: 1px solid rgb(29 36 33 / 12%);
  display: flex;
  height: 68px;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 750;
  gap: 10px;
  text-decoration: none;
}

.wordmark-mark {
  align-items: center;
  background: var(--moss);
  color: var(--white);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  height: 32px;
  justify-content: center;
  width: 32px;
}

nav {
  align-items: center;
  display: flex;
  gap: 26px;
}

nav a {
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

nav a:not(.header-action):hover {
  color: var(--moss);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.header-action {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
}

.header-action:hover {
  background: var(--moss);
}

.hero {
  align-items: center;
  background:
    linear-gradient(90deg, var(--coral) 0 12px, transparent 12px),
    var(--paper);
  display: flex;
  min-height: clamp(560px, 78svh, 720px);
  padding: 58px max(24px, calc((100vw - var(--max-width)) / 2));
  position: relative;
}

.hero-content {
  max-width: 590px;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 5.65rem);
  margin-bottom: 24px;
  max-width: 720px;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 7px;
}

.hero-copy {
  color: #343c37;
  font-size: 1.08rem;
  max-width: 560px;
}

.hero-actions,
.share-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  gap: 9px;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--moss);
  color: var(--white);
}

.button-primary:hover {
  background: var(--moss-dark);
}

.button-secondary {
  background: rgb(255 255 255 / 72%);
  border-color: rgb(29 36 33 / 44%);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--moss);
}

.button-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.gentle-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 17px 0 0;
  max-width: 510px;
}

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

.needs-band {
  background: var(--white);
}

.section-heading {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(210px, 0.7fr) minmax(320px, 1.3fr);
}

.needs-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
}

.need {
  min-height: 210px;
  padding: 24px 22px 20px 0;
}

.need + .need {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.need-number {
  color: var(--coral);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 46px;
}

.need p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.privacy-section {
  background: var(--sky);
  color: #14232a;
}

.privacy-section .eyebrow {
  color: #193c4e;
}

.privacy-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.85fr 1.15fr;
}

.privacy-copy {
  font-size: 1.05rem;
  max-width: 620px;
}

.privacy-copy p {
  margin-bottom: 22px;
}

.plain-statement {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.statement-inner {
  padding-bottom: 58px;
  padding-top: 58px;
}

.statement-inner p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin: 0;
}

.statement-inner p + p {
  color: var(--muted);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.95rem;
  margin-top: 12px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.share-section {
  background: var(--paper);
}

.share-layout {
  align-items: start;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(390px, 1.2fr);
}

.share-intro {
  color: var(--muted);
  margin: 24px 0 0;
  max-width: 440px;
}

.share-panel {
  border-left: 4px solid var(--coral);
  padding: 8px 0 8px 32px;
}

blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.42;
  margin: 0;
}

.status {
  color: var(--moss);
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 1.4em;
  margin: 12px 0 0;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.platform-links a {
  color: var(--moss);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.final-cta {
  background: var(--moss-dark);
  color: var(--white);
}

.final-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.final-inner .eyebrow {
  color: #f1a18c;
}

.final-inner h2 {
  margin-bottom: 32px;
}

.final-inner .button-primary {
  background: var(--white);
  color: var(--moss-dark);
}

.final-inner .button-primary:hover {
  background: #e9eee8;
}

footer {
  align-items: center;
  background: #17241c;
  color: rgb(255 255 255 / 68%);
  display: flex;
  font-size: 0.75rem;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px max(24px, calc((100vw - var(--max-width)) / 2));
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  nav > a:not(.header-action) {
    display: none;
  }

  .hero {
    background:
      linear-gradient(90deg, var(--coral) 0 10px, transparent 10px),
      var(--paper);
  }

  .section-heading,
  .privacy-layout,
  .share-layout {
    grid-template-columns: 1fr;
  }

  .needs-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .need:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .need:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 62px;
    padding-inline: 16px;
  }

  .header-action {
    font-size: 0.78rem;
    min-height: 38px;
    padding: 0 11px;
  }

  .hero {
    align-items: flex-start;
    background:
      linear-gradient(90deg, var(--coral) 0 7px, transparent 7px),
      var(--paper);
    min-height: 605px;
    padding: 52px 20px 68px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .share-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .share-actions .button {
    width: 100%;
  }

  .section-inner {
    padding: 74px 20px;
  }

  .needs-list {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .need {
    border-top: 1px solid var(--line);
    min-height: 155px;
    padding: 20px 0;
  }

  .need + .need,
  .need:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .need-number {
    margin-bottom: 27px;
  }

  .privacy-layout,
  .share-layout {
    gap: 40px;
  }

  .share-panel {
    padding-left: 22px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

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

  .button {
    transition: none;
  }
}
