:root {
  --paper: #f7f8f6;
  --paper-deep: #eceee9;
  --ink: #11110f;
  --muted: #686a64;
  --line: rgba(17, 17, 15, 0.17);
  --blue: #3157ff;
  --home: #bddfc5;
  --home-deep: #245b39;
  --quote: #e35a36;
  --quote-soft: #f4cfb9;
  --white: #ffffff;
  --radius-large: 34px;
  --radius-medium: 22px;
  --shell: min(1400px, calc(100vw - 64px));
  --ease: cubic-bezier(.2, .78, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  min-height: 78px;
  border-bottom: 1px solid transparent;
  transform: translateX(-50%);
  transition: min-height 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-color: var(--line);
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 18px;
}

.wordmark strong,
.wordmark small {
  display: block;
}

.wordmark strong {
  font-size: 14px;
  letter-spacing: .01em;
}

.wordmark small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  transition: background 180ms ease, color 180ms ease;
}

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

.header-action {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: center;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ca75f;
  box-shadow: 0 0 0 5px rgba(44, 167, 95, .12);
}

.hero h1 {
  max-width: 750px;
  margin: 34px 0 28px;
  font-size: clamp(58px, 7.1vw, 116px);
  font-weight: 560;
  letter-spacing: -.075em;
  line-height: .92;
}

.hero h1 em {
  color: var(--blue);
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", serif;
  font-weight: 400;
  letter-spacing: -.065em;
}

.hero-intro {
  max-width: 470px;
  margin: 0;
  color: #464843;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
  padding: 15px 19px 15px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  transition: transform 220ms var(--ease), background 180ms ease;
}

.primary-action:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.workbench {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(17, 17, 15, .23);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(20, 30, 25, .09);
  transform: rotate(1.2deg);
  transition: transform 450ms var(--ease);
}

.workbench:hover {
  transform: rotate(0deg) translateY(-4px);
}

.workbench-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
}

.workbench-status {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .05em;
}

.problem-route {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto 34px;
  gap: 16px;
  align-items: center;
  min-height: 168px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.route-home:hover {
  background: color-mix(in srgb, var(--home) 62%, white);
}

.route-quote:hover {
  background: color-mix(in srgb, var(--quote-soft) 58%, white);
}

.route-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.route-question {
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 550;
  letter-spacing: -.04em;
  line-height: 1.3;
}

.route-answer {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.route-arrow {
  font-size: 20px;
  transition: transform 220ms var(--ease);
}

.problem-route:hover .route-arrow {
  transform: translateX(5px);
}

.workbench-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 24px 28px 26px;
  background: var(--ink);
  color: var(--white);
}

.workbench-note span {
  color: #7e9aff;
}

.workbench-note p {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", serif;
  font-size: 15px;
  line-height: 1.6;
}

.tools-section,
.approach-section,
.maker-section,
.site-footer {
  width: var(--shell);
  margin-inline: auto;
}

.tools-section {
  padding: 120px 0 80px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 820px;
  margin: 15px 0 0;
  font-size: clamp(40px, 5.2vw, 78px);
  font-weight: 540;
  letter-spacing: -.065em;
  line-height: 1;
}

.section-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.tool-card {
  display: grid;
  grid-template-columns: minmax(380px, .78fr) minmax(0, 1.22fr);
  min-height: 690px;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: var(--radius-large);
  scroll-margin-top: 96px;
}

.tool-card-home {
  background: #d8ebdc;
}

.tool-card-quote {
  background: #f0d5c5;
}

.tool-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(30px, 4vw, 58px);
}

.tool-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: .04em;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 15, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
}

.status-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.tool-number {
  margin: 52px 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .12em;
}

.tool-copy h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(37px, 4.3vw, 67px);
  font-weight: 570;
  letter-spacing: -.06em;
  line-height: 1.02;
}

.tool-summary {
  max-width: 510px;
  margin: 21px 0 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.tool-fit {
  display: grid;
  gap: 0;
  margin: 38px 0 28px;
  border-top: 1px solid rgba(17, 17, 15, .16);
}

.tool-fit div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 15, .16);
}

.tool-fit dt,
.tool-fit dd {
  margin: 0;
}

.tool-fit dt {
  color: var(--muted);
  font-size: 11px;
}

.tool-fit dd {
  font-size: 12px;
  line-height: 1.65;
}

.tool-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  transition: background 180ms ease, transform 220ms var(--ease);
}

.tool-action:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.tool-action.is-pending {
  cursor: default;
  background: rgba(17, 17, 15, .12);
  color: rgba(17, 17, 15, .52);
  pointer-events: none;
}

.tool-visual {
  min-width: 0;
  margin: 18px;
  overflow: hidden;
  border-radius: 24px;
}

.home-visual {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 52px);
  background: #f5fbf6;
  color: #173722;
}

.visual-topline,
.visual-footnote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.visual-topline {
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(36, 91, 57, .18);
  color: #52715d;
  font-size: 11px;
}

.visual-topline span:last-child {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.home-plan {
  display: grid;
  gap: 12px;
  margin: auto 0;
}

.plan-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(36, 91, 57, .18);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(36, 91, 57, .05);
}

.plan-row.is-reduced {
  opacity: .58;
}

.plan-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #e2f0e5;
  font-size: 16px;
}

.plan-row strong,
.plan-row small {
  display: block;
}

.plan-row strong {
  font-size: 14px;
  font-weight: 600;
}

.plan-row small {
  margin-top: 5px;
  color: #6d8976;
  font-size: 10px;
}

.plan-tag {
  padding: 7px 9px;
  border-radius: 999px;
  background: #e8f3ea;
  color: #52715d;
  font-size: 9px;
  white-space: nowrap;
}

.visual-footnote {
  padding-top: 23px;
  border-top: 1px solid rgba(36, 91, 57, .18);
}

.visual-footnote span {
  color: #6d8976;
  font-size: 10px;
}

.visual-footnote strong {
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", serif;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 400;
  text-align: right;
}

.quote-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 54px);
  background: #32312d;
}

.quote-paper {
  position: relative;
  padding: clamp(24px, 3.5vw, 50px);
  border-radius: 4px;
  background: #fffdf7;
  color: #2b2924;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .25);
  transform: rotate(-1.4deg);
}

.quote-paper::after {
  position: absolute;
  right: 18px;
  bottom: -12px;
  left: 18px;
  height: 18px;
  background: #e6e0d3;
  content: "";
  clip-path: polygon(0 0, 100% 0, 98% 100%, 95% 60%, 91% 100%, 86% 58%, 81% 100%, 75% 58%, 69% 100%, 63% 60%, 57% 100%, 50% 58%, 43% 100%, 37% 60%, 31% 100%, 25% 58%, 19% 100%, 13% 60%, 7% 100%, 2% 58%);
}

.quote-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #34312b;
}

.quote-seal {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--quote);
  color: var(--quote);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 15px;
  transform: rotate(-7deg);
}

.quote-heading small,
.quote-heading strong {
  display: block;
}

.quote-heading small {
  color: #7b766d;
  font-size: 9px;
  letter-spacing: .1em;
}

.quote-heading strong {
  margin-top: 3px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .08em;
}

.quote-heading > span {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.quote-client {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  padding: 18px 0;
  color: #716c64;
  font-size: 9px;
}

.quote-client strong {
  color: #2b2924;
  font-weight: 600;
}

.quote-table {
  border-top: 1px solid #4d4942;
  border-left: 1px solid #4d4942;
}

.quote-tr {
  display: grid;
  grid-template-columns: 1.6fr .6fr .8fr .8fr;
}

.quote-tr span {
  padding: 10px 8px;
  border-right: 1px solid #4d4942;
  border-bottom: 1px solid #4d4942;
  font-size: 9px;
  text-align: right;
}

.quote-tr span:first-child {
  text-align: left;
}

.quote-th {
  background: #eee8dd;
  font-weight: 650;
}

.quote-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  align-items: end;
  margin-top: 20px;
  text-align: right;
}

.quote-total span {
  font-size: 9px;
}

.quote-total strong {
  color: var(--quote);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(22px, 2.6vw, 38px);
}

.quote-total small {
  grid-column: 1 / -1;
  color: #716c64;
  font-size: 8px;
}

.quote-export {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
}

.quote-export span {
  margin-right: auto;
}

.quote-export strong {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: var(--white);
  font-size: 9px;
  font-weight: 500;
}

.approach-section {
  padding: 120px 0;
}

.compact-heading {
  grid-template-columns: 1fr;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  position: relative;
  min-height: 350px;
  padding: 34px;
}

.principles article + article {
  border-left: 1px solid var(--line);
}

.principle-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: 20px;
}

.principles h3 {
  margin: 120px 0 12px;
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 560;
  letter-spacing: -.04em;
}

.principles p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.maker-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  min-height: 620px;
  margin-bottom: 80px;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--blue);
  color: var(--white);
}

.maker-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, .22);
  background-image: radial-gradient(rgba(255, 255, 255, .33) 1px, transparent 1px);
  background-size: 18px 18px;
}

.maker-note span {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.maker-note strong {
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", serif;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.15;
}

.maker-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 7vw, 108px);
}

.maker-copy .section-kicker {
  color: rgba(255, 255, 255, .65);
}

.maker-copy h2 {
  margin: 20px 0 30px;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: 1.05;
}

.keep-together {
  white-space: nowrap;
}

.maker-copy > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.85;
}

.maker-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.quiet-link {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
}

a.quiet-link:hover {
  border-color: var(--white);
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 130px;
  border-top: 1px solid var(--line);
}

.site-footer div strong,
.site-footer div span {
  display: block;
}

.site-footer div strong {
  font-size: 14px;
}

.site-footer div span,
.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 10px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  justify-self: end;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }

  .hero-copy .eyebrow,
  .hero-copy h1 {
    grid-column: 1 / -1;
  }

  .hero-copy .primary-action {
    align-self: start;
    justify-self: start;
    margin-top: 0;
  }

  .workbench {
    transform: none;
  }

  .tool-card {
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  }

  .tool-copy {
    padding: 36px;
  }

  .plan-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .plan-tag {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-large: 24px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    font-size: 11px;
  }

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

  .wordmark small {
    display: none;
  }

  .hero {
    gap: 54px;
    padding: 112px 0 54px;
  }

  .hero-copy {
    display: block;
  }

  .hero h1 {
    margin-top: 30px;
    font-size: clamp(54px, 18vw, 82px);
  }

  .hero-intro {
    max-width: 92%;
    font-size: 15px;
  }

  .primary-action {
    margin-top: 28px !important;
  }

  .workbench-head {
    min-height: 64px;
    padding: 0 19px;
  }

  .workbench-status {
    display: none;
  }

  .problem-route {
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    gap: 11px;
    min-height: 138px;
    padding: 20px 18px;
  }

  .route-answer {
    display: none;
  }

  .route-question {
    font-size: 19px;
  }

  .workbench-note {
    padding: 20px 19px 22px;
  }

  .tools-section {
    padding: 80px 0 50px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .section-heading > p {
    max-width: 92%;
  }

  .tool-card {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 18px;
  }

  .tool-copy {
    padding: 26px 22px 24px;
  }

  .tool-meta {
    margin-bottom: 0;
  }

  .tool-number {
    margin-top: 48px;
  }

  .tool-copy h3 {
    font-size: 42px;
  }

  .tool-fit {
    margin-top: 28px;
  }

  .tool-fit div {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .tool-visual {
    min-height: 490px;
    margin: 0 10px 10px;
    border-radius: 18px;
  }

  .home-visual,
  .quote-visual {
    padding: 22px 16px;
  }

  .plan-row {
    padding: 15px 13px;
  }

  .plan-row strong {
    font-size: 12px;
  }

  .quote-paper {
    padding: 24px 18px;
  }

  .quote-heading > span {
    display: none;
  }

  .quote-heading {
    grid-template-columns: auto 1fr;
  }

  .quote-client {
    grid-template-columns: auto 1fr;
  }

  .quote-client span:last-child {
    display: none;
  }

  .quote-tr {
    grid-template-columns: 1.4fr .55fr .7fr .75fr;
  }

  .quote-tr span {
    padding: 8px 4px;
    font-size: 7px;
  }

  .approach-section {
    padding: 80px 0;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles article {
    min-height: 270px;
    padding: 25px 6px;
  }

  .principles article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principles h3 {
    margin-top: 74px;
  }

  .maker-section {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 44px;
  }

  .maker-note {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .maker-copy {
    padding: 42px 26px 46px;
  }

  .maker-copy h2 {
    font-size: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    min-height: 120px;
  }

  .site-footer p {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .workbench,
  .quote-paper {
    transform: none;
  }
}
