:root {
  --paper: #fff8ed;
  --ink: #181425;
  --olive: #666b53;
  --sage: #bdc1ab;
  --line: #18142526;
  --muted: #625e67;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "General Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
::selection {
  background: var(--sage);
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.055em;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 6px;
}
.shell {
  width: min(1440px, 100% - 112px);
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  line-height: 1.6;
}
.section-number {
  margin-right: 22px;
  color: var(--olive);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
/* A quiet navigation lets the type and brand object lead. */
.header-wrap,
.hero-stage {
  background: var(--ink);
  color: var(--paper);
}
.header-wrap {
  position: relative;
  z-index: 10;
}
.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff8ed24;
  gap: 30px;
}
.brand {
  flex-shrink: 0;
  width: 182px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
  font-weight: 500;
}
.site-header nav > a {
  position: relative;
}
.site-header nav > a:not(.nav-contact):after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  bottom: -6px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-header nav > a:hover:after {
  transform: scaleX(1);
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 17px;
  border: 1px solid #fff8ed60;
}
.menu-toggle {
  display: none;
}
.header-wrap a:focus-visible,
.header-wrap button:focus-visible,
.hero-stage a:focus-visible,
.partnership a:focus-visible {
  outline-color: var(--sage);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 58px;
  padding: 17px 22px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--ink);
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.button.light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.button.light:hover {
  background: var(--sage);
  border-color: var(--sage);
}
/* The layered page is an original publishing motif, using the supplied mark. */
.hero-stage {
  overflow: hidden;
}
.hero-modern {
  display: grid;
  grid-template-columns: 1.16fr 1fr;
  gap: 6%;
  align-items: center;
  padding: 65px 0 74px;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-content > .eyebrow {
  color: var(--sage);
  font-size: 11px;
}
.hero-modern h1 {
  font-size: clamp(76px, 8.3vw, 126px);
  line-height: 0.98;
  letter-spacing: -0.067em;
  margin: 26px 0 32px;
}
.title-line {
  display: block;
}
.title-accent {
  color: var(--sage);
}
.hero-promise {
  font-size: clamp(21px, 1.85vw, 27px);
  line-height: 1.38;
  letter-spacing: -0.025em;
  max-width: 535px;
}
.hero-explanation {
  font-size: 15px;
  line-height: 1.7;
  color: #cecbd4;
  max-width: 455px;
  margin-top: 17px;
}
.hero-content .button {
  margin-top: 29px;
  min-width: 260px;
}
.chapter-art {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.chapter-scene {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.04;
  display: grid;
  place-items: center;
  perspective: 1300px;
}
.chapter-stack {
  position: relative;
  width: 59%;
  aspect-ratio: 0.73;
  transform: rotate(-10deg) rotateY(-14deg) rotateX(8deg);
  transform-style: preserve-3d;
  transition: transform 1s var(--ease);
}
.chapter-sheet {
  position: absolute;
  inset: 0;
  border: 1px solid #e4e3d360;
  box-shadow: 16px 20px 40px #0003;
  transform-origin: 15% 90%;
}
.sheet-back {
  background: #666b53;
  transform: translate(19%, -5%) rotate(16deg);
}
.sheet-middle {
  background: var(--sage);
  transform: translate(10%, -2%) rotate(8deg);
}
.sheet-front {
  background: var(--paper);
  color: var(--ink);
  padding: 7.5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    2px 2px 0 #9d9b91,
    5px 5px 0 #d7d1c2,
    8px 8px 0 #9b998f,
    20px 30px 60px #0003;
}
.sheet-edition {
  font-size: 8px;
  letter-spacing: 0.13em;
  font-weight: 500;
}
.sheet-mark {
  width: 52%;
  aspect-ratio: 0.78;
  align-self: center;
  background: var(--ink);
  mask: url("/assets/mark.png") center/contain no-repeat;
}
.sheet-rule {
  height: 1px;
  background: #18142540;
  width: 100%;
}
.sheet-footer {
  display: block;
  position: relative;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.orbit {
  position: absolute;
  inset: 9% -2%;
  border: 1px solid #bdc1ab20;
  border-radius: 50%;
  transform: rotate(-28deg) scaleY(0.7);
  z-index: -1;
}
.orbit-two {
  inset: 16% -10%;
  transform: rotate(30deg) scaleY(0.65);
  border-color: #bdc1ab12;
}
.art-coordinate {
  position: absolute;
  right: 2%;
  bottom: 5%;
  font-size: 10px;
  color: var(--sage);
  writing-mode: vertical-rl;
  letter-spacing: 0.04em;
}
.chapter-art figcaption {
  text-align: center;
  color: #cdc9d1;
  font-size: 12px;
  margin-top: 27px;
}
.hero-product-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.hero-product-links a {
  font-size: 13px;
  border-bottom: 1px solid #fff8ed40;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: border-color 0.3s;
}
.hero-product-links a:hover {
  border-color: var(--sage);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid #fff8ed24;
  padding: 23px 0 26px;
  font-size: 12px;
  color: #bdb9c4;
}
.hero-trust > span {
  color: var(--paper);
}
.hero-trust > p {
  margin-left: auto;
}
.hero-trust > a {
  color: var(--sage);
  white-space: nowrap;
}
/* Product stories, with changing scale and generous editorial spacing. */
.products {
  padding-block: 112px 115px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
}
.section-heading > .eyebrow {
  padding-top: 12px;
}
.section-heading h2 {
  font-size: clamp(48px, 5.5vw, 80px);
  letter-spacing: -0.06em;
}
.section-heading h2 span {
  color: var(--olive);
}
.section-intro {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}
.product-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 8%;
  align-items: center;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.product-feature + .product-feature {
  margin-top: 100px;
}
.product-copy {
  position: relative;
  min-width: 0;
}
.product-index {
  position: absolute;
  right: 0;
  top: -4px;
  font-size: 14px;
  color: #898979;
}
.product-copy > .eyebrow {
  color: var(--olive);
  display: block;
  padding-right: 30px;
}
.product-copy h3 {
  font-size: clamp(36px, 3.8vw, 57px);
  margin-top: 22px;
  line-height: 1.06;
}
.product-copy > .product-name {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 25px;
}
.product-copy > p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 380px;
  color: var(--muted);
  margin-top: 10px;
}
.service-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin: 22px 0 0;
  color: var(--olive);
  font-size: 11px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #18142580;
  padding: 12px 0;
  margin-top: 23px;
  transition:
    gap 0.3s var(--ease),
    border-color 0.3s;
}
.text-link:hover {
  border-color: var(--ink);
}
.product-visual {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1.08;
  background: #e4e3d9;
}
.catalog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.visual-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 7px 10px;
  font-size: 10px;
  line-height: 1.5;
}
.catalog-visual:hover img {
  transform: scale(1.035);
}
.website-feature {
  display: block;
}
.author-feature-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 8%;
  align-items: end;
}
.author-feature-intro .product-copy {
  max-width: 580px;
}
.author-feature-description {
  max-width: 380px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.author-feature-description .product-name {
  color: var(--ink);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 10px;
}
.author-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}
.author-example {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.author-example-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e4e3d9;
  border: 1px solid var(--line);
}
.author-example-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.author-example-details {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 1;
  padding: 20px 0 0;
}
.author-example-genre {
  color: var(--olive);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.author-example-title {
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.22;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-top: 10px;
}
.author-example-name {
  color: var(--muted);
  font-size: 13px;
  margin-top: 7px;
  margin-bottom: 20px;
}
.author-example-link {
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid #18142560;
  margin-top: auto;
}
.author-example:hover .author-example-link {
  border-color: var(--ink);
}
.author-examples-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.author-examples-footer > p {
  color: var(--muted);
  font-size: 12px;
}
.author-examples-footer .text-link {
  margin-top: 0;
}
/* The partnership unfolds in three clear steps. */
.partnership {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 0 85px;
}
.partnership-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 40px;
}
.partnership-top > .eyebrow {
  padding-top: 10px;
  color: var(--sage);
}
.partnership .section-number {
  color: var(--sage);
}
.partnership h2 {
  font-size: clamp(45px, 5.5vw, 81px);
  line-height: 1.02;
}
.partnership h2 span {
  color: var(--sage);
}
.partnership-intro {
  grid-column: 2;
  margin-top: 30px;
  max-width: 530px;
  font-size: 18px;
  line-height: 1.6;
  color: #cdc9d1;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 68px 0 0;
}
.steps li {
  border-top: 1px solid #fff8ed40;
  padding-top: 23px;
}
.step-number {
  display: block;
  color: var(--sage);
  font-size: 13px;
  margin-bottom: 35px;
}
.steps h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
}
.steps p {
  font-size: 15px;
  line-height: 1.75;
  color: #cdc9d1;
  max-width: 335px;
  margin-top: 16px;
}
/* Experience belongs to the people, not the age of the company. */
.story {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 7%;
  align-items: center;
  padding-block: 110px 125px;
}
.story-perspective {
  padding: clamp(28px, 3.1vw, 46px);
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--paper);
  min-width: 0;
  box-shadow: 7px 7px 0 var(--paper), 8px 8px 0 var(--sage), 16px 16px 0 #bdc1ab70;
}
.perspective-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}
.perspective-top .eyebrow {
  font-size: 10px;
  color: var(--sage);
}
.perspective-mark {
  width: 26px;
  aspect-ratio: 0.78;
  background: var(--sage);
  mask: url('/assets/mark.png') center/contain no-repeat;
  flex-shrink: 0;
}
.perspective-years {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 16px;
  line-height: 1;
  margin-top: 42px;
}
.perspective-approx {
  grid-column: 1 / -1;
  color: var(--sage);
  font-size: 13px;
  margin-bottom: 12px;
}
.perspective-years strong {
  font-size: clamp(170px, 20vw, 292px);
  letter-spacing: -0.095em;
  font-weight: 500;
  line-height: 0.85;
  margin-left: -0.055em;
}
.perspective-unit {
  font-size: clamp(20px, 2vw, 29px);
  letter-spacing: -0.04em;
  margin-bottom: 7px;
  color: var(--sage);
}
.perspective-copy {
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.3;
  letter-spacing: -0.035em;
  margin-top: 30px;
}
.perspective-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-top: 1px solid #fff8ed40;
  padding-top: 24px;
  margin-top: 36px;
  color: var(--sage);
  font-size: 12px;
  line-height: 1.65;
}
.perspective-pages {
  display: block;
  width: 33px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--sage);
  box-shadow: 4px -4px 0 var(--ink), 5px -5px 0 var(--sage), 9px -9px 0 var(--ink), 10px -10px 0 var(--sage);
  margin: 10px 10px 0 0;
}
.story-copy {
  min-width: 0;
}
.story-copy > .eyebrow {
  color: var(--olive);
  margin-bottom: 25px;
}
.story-copy h2 {
  font-size: clamp(42px, 4.65vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.story-copy h2 span {
  color: var(--olive);
}
.story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 585px;
}
.story-copy > .story-lead {
  font-size: 24px !important;
  color: var(--ink) !important;
  line-height: 1.4 !important;
  margin-top: 28px !important;
}
.story-cta {
  margin-top: 28px;
  background: var(--ink);
  color: var(--paper);
}
.story-cta:hover {
  background: var(--olive);
  border-color: var(--olive);
}
.contact {
  background: var(--sage);
  padding: 83px 0 80px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 8%;
  align-items: end;
}
.contact h2 {
  font-size: clamp(54px, 6vw, 91px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  margin-top: 25px;
}
.contact h2 span {
  color: #4e553e;
}
.contact-copy > p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 26px;
}
.contact-secondary {
  display: block;
  font-size: 12px;
  margin-top: 22px;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.contact .button {
  gap: 20px;
}
.contact .button:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.site-footer {
  padding: 58px 0 26px;
}
.footer-brand-moment {
  overflow: hidden;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand-moment img {
  width: 100%;
  opacity: 0.95;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 28px 0 45px;
  font-size: 13px;
}
.footer-main > .brand {
  display: none;
}
.footer-main > p {
  color: var(--muted);
}
.footer-main > a:last-child {
  margin-left: auto;
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom > span:nth-child(2) {
  margin-left: auto;
}
.footer-bottom > a {
  margin-left: auto;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .chapter-art:hover .chapter-stack {
    transform: rotate(-6deg) rotateY(-4deg) rotateX(3deg);
  }
}
@media (min-width: 1700px) {
  .hero-modern h1 {
    font-size: 134px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 72px);
  }
  .hero-modern {
    grid-template-columns: 1.08fr 1fr;
    gap: 4%;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .hero-modern h1 {
    font-size: 8.5vw;
  }
  .hero-promise {
    font-size: 22px;
  }
  .chapter-scene {
    aspect-ratio: 0.88;
  }
  .chapter-stack {
    width: 67%;
  }
  .hero-product-links {
    gap: 20px;
  }
  .hero-product-links a {
    font-size: 12px;
    gap: 15px;
  }
  .hero-trust {
    gap: 22px;
    font-size: 11px;
  }
  .product-feature {
    gap: 6%;
  }
  .product-copy h3 {
    font-size: 40px;
  }
  .product-copy > p {
    font-size: 15px;
  }
  .text-link {
    font-size: 13px;
    gap: 22px;
  }
  .story {
    gap: 7%;
  }
  .story-perspective {
    padding: 28px;
  }
  .perspective-years {
    margin-top: 40px;
  }
  .contact-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 5%;
  }
  .contact .button {
    font-size: 12px;
    padding-inline: 17px;
  }
  .contact h2 {
    font-size: 6.2vw;
  }
}
@media (max-width: 800px) {
  .site-header nav {
    gap: 22px;
  }
  .site-header .brand {
    width: 160px;
  }
  .hero-modern {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 44px;
  }
  .hero-content {
    max-width: 650px;
  }
  .hero-modern h1 {
    font-size: clamp(75px, 12vw, 100px);
    margin-top: 23px;
  }
  .hero-promise {
    max-width: 520px;
    font-size: 25px;
  }
  .hero-explanation {
    max-width: 520px;
    font-size: 16px;
  }
  .chapter-art {
    width: 100%;
    max-width: 540px;
    justify-self: center;
  }
  .chapter-scene {
    aspect-ratio: 1.2;
  }
  .chapter-stack {
    width: 51%;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 10px 25px;
  }
  .hero-trust > p {
    margin-left: 0;
  }
  .hero-trust > a {
    margin-left: auto;
  }
  .section-heading {
    grid-template-columns: 1fr 1.5fr;
  }
  .product-feature {
    grid-template-columns: 0.92fr 1fr;
    gap: 5%;
  }
  .product-copy h3 {
    font-size: 34px;
  }
  .product-visual {
    aspect-ratio: 0.85;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 90px;
  }
  .story-perspective {
    width: min(100% - 16px, 520px);
    padding: 36px;
  }
  .perspective-years strong {
    font-size: 250px;
  }
  .perspective-copy {
    font-size: 26px;
  }
  .story-copy h2 {
    font-size: 56px;
  }
  .story-copy > .story-lead {
    font-size: 19px !important;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .contact-copy > p {
    font-size: 16px;
  }
  .contact .button {
    font-size: 11px;
    gap: 12px;
  }
  .steps {
    gap: 26px;
  }
  .steps h3 {
    font-size: 22px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 24px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 86px;
    position: relative;
  }
  .site-header .brand {
    width: 154px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: 0;
    color: var(--paper);
    padding: 12px 0 12px 15px;
    font-size: 13px;
    cursor: pointer;
  }
  .site-header nav {
    position: absolute;
    top: calc(100% - 1px);
    left: -20px;
    right: -20px;
    background: var(--ink);
    padding: 14px 20px 25px;
    z-index: 5;
    border-bottom: 1px solid #fff8ed40;
    display: none;
    align-items: stretch;
    gap: 0;
  }
  .site-header nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .site-header nav > a {
    padding: 14px 0;
  }
  .site-header nav > a.nav-contact {
    padding: 13px 16px;
    margin-top: 8px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .section-number {
    margin-right: 15px;
  }
  .hero-modern {
    padding-top: 36px;
    padding-bottom: 36px;
    gap: 12px;
  }
  .hero-content > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .hero-modern h1 {
    font-size: clamp(59px, 15vw, 100px);
    margin: 23px 0 27px;
  }
  .hero-promise {
    font-size: 22px;
    line-height: 1.4;
  }
  .hero-explanation {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 17px;
  }
  .hero-content .button {
    min-width: 0;
    width: 100%;
    max-width: 390px;
    margin-top: 25px;
  }
  .chapter-scene {
    aspect-ratio: 1.08;
    margin-top: 10px;
  }
  .chapter-stack {
    width: 51%;
  }
  .sheet-footer {
    font-size: 13px;
  }
  .sheet-edition {
    font-size: 6px;
  }
  .art-coordinate {
    font-size: 9px;
  }
  .chapter-art figcaption {
    margin-top: 13px;
    font-size: 11px;
  }
  .hero-product-links {
    margin-top: 17px;
    gap: 24px;
  }
  .hero-product-links a {
    font-size: 12px;
    gap: 14px;
    padding-bottom: 10px;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px 20px;
    padding-block: 22px;
    font-size: 11px;
  }
  .hero-trust > span {
    grid-column: 1 / -1;
    font-size: 12px;
  }
  .hero-trust > p {
    max-width: 220px;
    line-height: 1.6;
  }
  .products {
    padding-block: 60px 64px;
  }
  .section-heading {
    display: block;
    margin-bottom: 38px;
  }
  .section-heading > .eyebrow {
    padding-top: 0;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: clamp(43px, 11.7vw, 68px);
  }
  .section-intro {
    font-size: 16px;
    margin-top: 20px;
  }
  .product-feature {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 26px;
    align-items: stretch;
  }
  .product-feature + .product-feature {
    margin-top: 48px;
  }
  .product-copy h3 {
    font-size: 38px;
    margin-top: 18px;
  }
  .product-copy > .product-name {
    margin-top: 20px;
    font-size: 16px;
  }
  .product-copy > p {
    font-size: 15px;
    max-width: none;
  }
  .service-details {
    font-size: 11px;
    gap: 7px 14px;
    margin-top: 18px;
  }
  .text-link {
    font-size: 13px;
    margin-top: 17px;
    padding-block: 10px;
    gap: 27px;
  }
  .product-visual {
    aspect-ratio: 1.06;
  }
  .visual-caption {
    bottom: 12px;
    left: 12px;
    font-size: 9px;
    padding: 6px 8px;
  }
  .partnership {
    padding-block: 58px;
  }
  .partnership-top {
    display: block;
  }
  .partnership-top > .eyebrow {
    padding-top: 0;
    margin-bottom: 26px;
  }
  .partnership h2 {
    font-size: clamp(42px, 11vw, 65px);
  }
  .partnership-intro {
    font-size: 16px;
    max-width: none;
    margin-top: 24px;
  }
  .steps {
    display: block;
    margin-top: 35px;
  }
  .steps li {
    padding: 24px 0 26px 39px;
    position: relative;
  }
  .steps li:last-child {
    padding-bottom: 0;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 27px;
    font-size: 11px;
    margin: 0;
  }
  .steps h3 {
    font-size: 23px;
  }
  .steps p {
    font-size: 14px;
    margin-top: 10px;
    max-width: none;
  }
  .story {
    display: grid;
    padding-block: 64px;
    gap: 50px;
    align-items: stretch;
  }
  .story-copy > .eyebrow {
    margin-bottom: 23px;
  }
  .story-copy h2 {
    font-size: clamp(38px, 9.7vw, 56px);
    line-height: 1.06;
  }
  .story-copy > .story-lead {
    font-size: 20px !important;
    margin-top: 23px !important;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 15px;
    margin-top: 18px;
  }
  .story-perspective {
    padding: 27px;
  }
  .perspective-years {
    margin-top: 33px;
  }
  .perspective-years strong {
    font-size: clamp(155px, 49vw, 250px);
  }
  .perspective-copy {
    font-size: clamp(20px, 5.5vw, 26px);
    margin-top: 25px;
  }
  .perspective-foot {
    font-size: 11px;
    margin-top: 28px;
  }
  .contact {
    padding-block: 55px;
  }
  .contact-inner {
    display: block;
  }
  .contact h2 {
    font-size: clamp(44px, 11.4vw, 73px);
    margin-top: 23px;
    line-height: 1.07;
  }
  .contact-copy {
    margin-top: 28px;
  }
  .contact-copy > p {
    font-size: 16px;
    max-width: none;
    margin-bottom: 23px;
  }
  .contact .button {
    font-size: 13px;
    gap: 22px;
    padding-inline: 19px;
  }
  .contact-secondary {
    font-size: 12px;
    margin-top: 22px;
  }
  .site-footer {
    padding-block: 35px 24px;
  }
  .footer-brand-moment {
    padding-bottom: 30px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 18px;
    padding: 23px 0 28px;
    font-size: 11px;
  }
  .footer-main > a:last-child {
    margin-left: 0;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 20px;
    font-size: 10px;
    padding-top: 20px;
  }
  .footer-bottom > span:nth-child(2),
  .footer-bottom > a {
    margin-left: 0;
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .author-example:hover img {
    transform: scale(1.02);
  }
}
@media (max-width: 1000px) and (min-width: 701px) {
  .author-example-grid {
    gap: 18px;
  }
  .author-feature-intro {
    gap: 6%;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .website-feature {
    display: block;
  }
  .author-feature-intro {
    display: block;
  }
  .author-feature-description {
    max-width: none;
    font-size: 15px;
    margin-top: 23px;
  }
  .author-example-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 30px;
  }
  .author-example-details {
    padding-top: 17px;
  }
  .author-example-title {
    font-size: 25px;
  }
  .author-examples-footer {
    display: block;
    margin-top: 30px;
    padding-top: 22px;
  }
  .author-examples-footer .text-link {
    margin-top: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
