:root {
  --ink: #171615;
  --muted: #665f58;
  --paper: #fbf8f1;
  --white: #ffffff;
  --line: #ded8ce;
  --orange: #ff6846;
  --peach: #fff0e7;
  --lilac: #f3efff;
  --mint: #e6f7ed;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 10px max(22px, calc((100vw - 1160px) / 2));
  background: rgba(251, 248, 241, 0.95);
  border-bottom: 1px solid rgba(222, 216, 206, 0.9);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--orange);
  border: 1.5px solid var(--ink);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}

.wordmark > span:last-child {
  display: grid;
  line-height: 1.05;
}

.wordmark b {
  font-size: 14px;
}

.wordmark small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.site-header nav a {
  color: #46413d;
  font-size: 12px;
  font-weight: 720;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--ink);
}

.site-header .header-cta {
  padding: 10px 14px;
  color: var(--ink);
  background: var(--orange);
  border: 1.5px solid var(--ink);
  border-radius: 9px;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero {
  padding: 112px 24px 84px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 190, 166, 0.28), transparent 24%),
    radial-gradient(circle at 88% 62%, rgba(203, 190, 255, 0.24), transparent 26%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.overline,
.chapter-number {
  margin: 0 0 18px;
  color: #d94a2f;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 970px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-lead {
  max-width: 790px;
  margin: 34px 0 0;
  color: #4e4843;
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

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

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

.button-primary {
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--ink);
}

.text-link {
  font-size: 13px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.story {
  background: var(--white);
}

.story-header,
.story-body,
.story-break-inner,
.article-width {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.story-header {
  padding: 120px 24px 50px;
}

.story-header h2,
.story-chapter h2,
.story-break h2,
.proof h2,
.why h2,
.method h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6.2vw, 75px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.story-deck,
.section-lead {
  margin: 27px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
}

.story-body {
  position: relative;
  padding: 20px 24px 115px;
}

.story-body > p,
.story-columns p,
.article-width > p,
.why .plain p {
  color: #302c29;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.82;
}

.story-body > p {
  max-width: 700px;
  margin: 0 0 28px;
}

.story-body .first-paragraph::first-letter {
  float: left;
  margin: 7px 10px 0 0;
  color: var(--orange);
  font-family: var(--serif);
  font-size: 68px;
  line-height: 0.72;
}

.story-body h3 {
  max-width: 700px;
  margin: 75px 0 26px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.story-break {
  padding: 110px 24px;
  border-top: 1px solid rgba(23, 22, 21, 0.08);
  border-bottom: 1px solid rgba(23, 22, 21, 0.08);
}

.story-break-lilac {
  background: var(--lilac);
}

.story-break-peach {
  background: var(--peach);
}

.story-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  margin-top: 40px;
}

.story-columns p {
  margin: 0;
  font-size: 18px;
}

.story-break blockquote {
  margin: 60px 0 0;
  padding: 35px 40px;
  background: rgba(255, 255, 255, 0.72);
  border-left: 5px solid var(--orange);
  border-radius: 0 14px 14px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.story-chapter {
  padding: 120px 24px 0;
  background: var(--white);
}

.story-chapter .story-body {
  padding-right: 0;
  padding-left: 0;
}

.story-chapter .chapter-number,
.story-chapter h2,
.story-chapter .story-deck {
  max-width: 820px;
}

.closing-line {
  margin: 55px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
}

.proof,
.why,
.method {
  padding: 120px 24px;
}

.proof {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-width > p {
  margin: 26px 0 0;
  font-size: 19px;
}

.why {
  background: var(--white);
}

.why .plain {
  margin-top: 50px;
}

.why .plain p {
  margin: 0 0 25px;
  font-size: 18px;
}

.big-quote {
  margin: 65px 0 45px;
  padding: 0;
  color: var(--ink);
  border: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.method {
  background: var(--lilac);
  border-top: 1px solid #dfd6ff;
  border-bottom: 1px solid #dfd6ff;
}

.method-list {
  margin: 50px 0 40px;
  padding: 0;
  border-top: 1px solid #b9afd9;
  list-style: none;
}

.method-list li {
  padding: 24px 0;
  border-bottom: 1px solid #b9afd9;
}

.method-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.method-list p {
  margin: 5px 0 0;
  color: #5b5468;
  font-size: 14px;
}

.final-cta {
  padding: 100px 24px;
  background: var(--white);
}

.final-cta > div {
  max-width: 820px;
  margin: 0 auto;
  padding: 55px;
  background: var(--peach);
  border: 1px solid #edc9b9;
  border-radius: 18px;
}

.final-cta h2 {
  font-size: clamp(42px, 5.5vw, 68px);
}

.final-cta p:not(.chapter-number) {
  max-width: 650px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
}

.site-footer {
  display: grid;
  max-width: 1160px;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  padding: 34px 22px 48px;
  border-top: 1px solid var(--line);
}

.site-footer > p {
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.site-footer nav a {
  color: #514b46;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid #176dcc;
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
    padding: 8px 15px;
  }

  .wordmark-mark {
    width: 31px;
    height: 31px;
  }

  .wordmark small,
  .site-header nav > a:not(.header-cta) {
    display: none;
  }

  .site-header .header-cta {
    padding: 9px 11px;
    font-size: 10px;
  }

  .hero {
    padding: 72px 16px 58px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 72px);
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
  }

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

  .hero-actions .text-link {
    text-align: center;
  }

  .story-header {
    padding: 82px 16px 35px;
  }

  .story-header h2,
  .story-chapter h2,
  .story-break h2,
  .proof h2,
  .why h2,
  .method h2,
  .final-cta h2 {
    font-size: 46px;
  }

  .story-deck,
  .section-lead {
    font-size: 19px;
  }

  .story-body {
    padding: 15px 16px 78px;
  }

  .story-body > p,
  .story-columns p,
  .article-width > p,
  .why .plain p {
    font-size: 18px;
    line-height: 1.72;
  }

  .story-body h3 {
    margin-top: 58px;
    font-size: 34px;
  }

  .story-break,
  .proof,
  .why,
  .method {
    padding: 78px 16px;
  }

  .story-chapter {
    padding: 82px 16px 0;
  }

  .story-columns {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .story-break blockquote {
    margin-top: 42px;
    padding: 25px;
    font-size: 29px;
  }

  .big-quote {
    margin: 50px 0 30px;
    font-size: 48px;
  }

  .final-cta {
    padding: 70px 16px;
  }

  .final-cta > div {
    padding: 32px 25px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 16px 42px;
  }

  .site-footer > p {
    text-align: left;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
