:root {
  color-scheme: light;
  --ink: #16332b;
  --ink-soft: #355348;
  --cream: #fbf7f0;
  --sage: #dce9dc;
  --coral: #ec9c80;
  --coral-deep: #c7583d;
  --line: #bed0c1;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: ui-rounded, "Avenir Next", Avenir, "Gill Sans", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.site-width {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 610px;
  height: min(80svh, 680px);
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image: url("/assets/kinship-hero-mobile.jpg");
  background-image: image-set(
    url("/assets/kinship-hero-mobile.jpg") 1x,
    url("/assets/kinship-hero.jpg") 2x
  );
  background-position: center;
  background-size: cover;
}

@media (min-width: 720px) {
  .hero {
    background-image: url("/assets/kinship-hero.jpg");
    background-image: image-set(url("/assets/kinship-hero.jpg") 1x);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(12 32 25 / 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 0 68px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 28px;
}

.wordmark {
  width: fit-content;
  color: inherit;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-glossary {
  display: flex;
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgb(255 255 255 / 48%);
}

.brand-glossary div {
  display: grid;
  gap: 3px;
}

.brand-glossary dt {
  color: #d9e5d7;
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-glossary dd {
  margin: 0;
  color: var(--white);
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 17px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--coral-deep);
}

h1 {
  max-width: 650px;
  font-size: 64px;
  line-height: 1.02;
}

.hero-description {
  max-width: 570px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.45;
}

.human-line {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.coming-soon {
  display: inline-block;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--coral);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 80px;
  align-items: start;
}

h2 {
  font-size: 48px;
  line-height: 1.1;
}

.intro-copy,
.conversation-copy,
.promise-layout > p {
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.section-sage {
  background: var(--sage);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--coral-deep);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

h3 {
  font-size: 29px;
  line-height: 1.15;
}

.steps p {
  margin-top: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.conversation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 96px;
}

.conversation-copy {
  display: grid;
  gap: 24px;
}

.section-coral {
  background: var(--coral);
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 80px;
  align-items: start;
}

.promise .eyebrow-dark {
  color: var(--ink);
}

.promise-layout > p {
  color: var(--ink);
}

.footer {
  padding: 30px 0;
  color: var(--cream);
  background: var(--ink);
}

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

.wordmark-footer {
  font-size: 17px;
}

.footer p {
  color: #d9e5d7;
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a,
.legal-home-link {
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-links a:hover,
.legal-home-link:hover {
  color: var(--white);
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  padding: 28px 0;
  color: var(--cream);
  background: var(--ink);
}

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

.legal-main {
  width: min(820px, calc(100% - 48px));
  padding-top: 88px;
  padding-bottom: 120px;
}

.legal-title {
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-title h1 {
  max-width: none;
  color: var(--ink);
  font-size: 54px;
  line-height: 1.06;
}

.legal-updated {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

.legal-lede {
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 42px;
}

.legal-content section {
  display: grid;
  gap: 16px;
}

.legal-content h2 {
  font-size: 30px;
  line-height: 1.2;
}

.legal-content h3 {
  margin-top: 8px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 24px;
}

.legal-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--coral-deep);
  text-underline-offset: 3px;
}

.legal-callout {
  padding: 24px;
  border-left: 4px solid var(--coral-deep);
  background: var(--sage);
}

.legal-callout p {
  color: var(--ink);
}

.legal-contact {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

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

@media (max-width: 760px) {
  .site-width {
    width: min(100% - 40px, 560px);
  }

  .hero {
    min-height: 610px;
    height: min(82svh, 680px);
    background-position: 63% center;
  }

  .hero-overlay {
    background: rgb(12 32 25 / 68%);
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .wordmark {
    font-size: 27px;
  }

  .brand-glossary {
    padding-left: 0;
    border-left: 0;
  }

  .brand-glossary dd {
    font-size: 14px;
  }

  h1 {
    font-size: 45px;
    line-height: 1.04;
  }

  .hero-description {
    margin-top: 20px;
    font-size: 18px;
  }

  .human-line {
    font-size: 16px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .intro,
  .conversation,
  .promise-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h2 {
    font-size: 39px;
  }

  .intro-copy,
  .conversation-copy,
  .promise-layout > p {
    font-size: 18px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 42px;
  }

  .step-number {
    margin-bottom: 24px;
  }

  h3 {
    font-size: 27px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .legal-main {
    width: min(100% - 40px, 560px);
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .legal-title {
    margin-bottom: 40px;
    padding-bottom: 36px;
  }

  .legal-title h1 {
    font-size: 42px;
  }

  .legal-lede {
    font-size: 18px;
  }

  .legal-content {
    gap: 36px;
  }

  .legal-content h2 {
    font-size: 27px;
  }
}

@media (max-width: 390px) {
  .site-width {
    width: min(100% - 32px, 560px);
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  .legal-main {
    width: min(100% - 32px, 560px);
  }

  .legal-title h1 {
    font-size: 38px;
  }
}
