@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/Satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/Satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/Satoshi-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f5f1e8;
  --paper-deep: #e9e0d1;
  --ink: #1d2421;
  --muted: #64706a;
  --line: rgba(29, 36, 33, .15);
  --line-strong: rgba(29, 36, 33, .28);
  --forest: #164b3c;
  --forest-soft: #dbe7df;
  --coral: #d56e4b;
  --coral-soft: #f4d8c9;
  --sun: #e3b24f;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(46, 42, 31, .12);
  --max: 1240px;
  --nav-height: 76px;
  font-family: "Satoshi", "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 0%, rgba(227, 178, 79, .18), transparent 30rem),
    linear-gradient(180deg, var(--paper) 0%, #fbfaf6 70%, var(--white) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

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

img {
  display: block;
  max-width: 100%;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 253, 248, .7);
  border-radius: 999px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 14px 35px rgba(29, 36, 33, .09);
  backdrop-filter: blur(18px);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-nav.is-scrolled {
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 18px 45px rgba(29, 36, 33, .14);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  padding: 10px 12px 10px 22px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.site-brand__mark {
  position: relative;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.site-brand__mark::before,
.site-brand__mark::after {
  position: absolute;
  content: "";
  background: var(--coral);
}

.site-brand__mark::before {
  top: 6px;
  left: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.site-brand__mark::after {
  right: -2px;
  bottom: 3px;
  width: 14px;
  height: 4px;
  transform: rotate(-38deg);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: color .2s ease, background .2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--forest);
  background: var(--forest-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  background: var(--forest-soft);
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease;
}

.nav-toggle__lines {
  position: relative;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  position: absolute;
  content: "";
}

.nav-toggle__lines::before {
  top: -6px;
}

.nav-toggle__lines::after {
  top: 6px;
}

.page-shell {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  align-items: center;
  gap: clamp(44px, 8vw, 120px);
  min-height: 100vh;
  min-height: 100svh;
  padding: 150px 0 110px;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--coral);
}

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

.hero h1 {
  max-width: 1120px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero__lede {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.inline-image {
  display: inline-block;
  width: 1.2em;
  height: .62em;
  margin: 0 .09em;
  vertical-align: .08em;
  border: 2px solid var(--white);
  border-radius: 999px;
  background:
    linear-gradient(120deg, rgba(22, 75, 60, .15), rgba(22, 75, 60, .75)),
    url("https://picsum.photos/seed/knowledge-lamp/800/500") center / cover;
  box-shadow: 0 5px 16px rgba(29, 36, 33, .18);
}

.mobile-break {
  display: none;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-3px);
  background: #216450;
  box-shadow: 0 15px 28px rgba(22, 75, 60, .18);
}

.button--quiet {
  color: var(--forest);
  background: transparent;
}

.button--quiet:hover {
  background: var(--forest-soft);
  box-shadow: none;
}

.button__arrow {
  font-size: 18px;
  line-height: 0;
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.hero__image {
  position: absolute;
  inset: 0 0 45px 40px;
  overflow: hidden;
  border-radius: 42% 42% 10px 10px;
  background:
    linear-gradient(135deg, rgba(22, 75, 60, .18), rgba(29, 36, 33, .52)),
    url("https://picsum.photos/seed/quiet-observatory/1000/1300") center / cover;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.hero__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(20, 29, 25, .5));
}

.hero__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(260px, 70%);
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, .7);
  border-radius: 8px;
  color: var(--white);
  background: rgba(22, 75, 60, .88);
  box-shadow: 0 18px 40px rgba(29, 36, 33, .18);
}

.hero__caption p {
  margin-bottom: 0;
  font-size: 13px;
}

.hero__caption strong {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
}

.section {
  padding: clamp(100px, 13vw, 190px) 0;
}

.section--bordered {
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.bento {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.bento-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(46, 42, 31, .05);
  transition: transform .45s cubic-bezier(.2, .75, .2, 1), box-shadow .45s ease, border-color .3s ease;
}

.bento-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.bento-card--tech {
  grid-column: span 5;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 75, 60, .82), rgba(22, 75, 60, .28)),
    url("https://picsum.photos/seed/network-notes/1200/900") center / cover;
}

.bento-card--reading {
  grid-column: span 4;
  background: var(--coral-soft);
}

.bento-card--life {
  grid-column: span 3;
  background: var(--forest-soft);
}

.card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.card__glyph {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
}

.card__arrow {
  font-size: 22px;
  line-height: 1;
  transition: transform .3s ease;
}

.bento-card:hover .card__arrow {
  transform: translate(4px, -4px);
}

.bento-card h3 {
  max-width: 300px;
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.bento-card p {
  max-width: 340px;
  margin-bottom: 0;
  color: inherit;
  opacity: .78;
  font-size: 14px;
}

.bento-card--life h3 {
  max-width: 190px;
}

.bento-card--life p {
  font-size: 13px;
}

.archive {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(40px, 10vw, 150px);
  align-items: start;
}

.archive__title {
  position: sticky;
  top: 130px;
}

body.has-gsap .archive__title {
  position: static;
  top: auto;
}

.archive__title h2 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 5.4vw, 5.6rem);
  line-height: .95;
  letter-spacing: 0;
}

.archive__title p {
  max-width: 360px;
  color: var(--muted);
}

.archive__list {
  display: grid;
  gap: 12px;
}

.archive-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 118px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, color .3s ease;
}

.archive-row:hover {
  padding-right: 12px;
  color: var(--forest);
}

.archive-row__title {
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: 800;
}

.archive-row__text {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.archive-row__time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.pathway {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 280px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.pathway__item {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 26px;
  border-right: 1px solid var(--line-strong);
  background: var(--paper);
  transition: flex .5s cubic-bezier(.2, .75, .2, 1), color .35s ease;
}

.pathway__item:last-child {
  border-right: 0;
}

.pathway:hover .pathway__item {
  flex: .85;
}

.pathway:hover .pathway__item:hover {
  flex: 1.4;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22, 75, 60, .87), rgba(22, 75, 60, .25)),
    var(--pathway-image) center / cover;
}

.pathway__item h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1;
}

.pathway__item p {
  position: relative;
  z-index: 1;
  max-width: 240px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.pathway__item:hover p {
  color: rgba(255, 253, 248, .82);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(22, 75, 60, .96), rgba(22, 75, 60, .72)),
    url("https://picsum.photos/seed/green-lamp/1600/700") center / cover;
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: 0;
}

.cta p {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, .78);
}

.cta .button {
  color: var(--forest);
  border-color: var(--white);
  background: var(--white);
}

.cta .button:hover {
  background: var(--sun);
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 32px;
  align-items: center;
}

.beian-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 11px;
}

.beian-links a:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.beian-police {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.beian-police img {
  width: 16px;
  height: auto;
}

.beian-separator {
  color: var(--line-strong);
}

.subpage main {
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: clamp(40px, 10vw, 150px);
  align-items: end;
  min-height: 72svh;
  padding: 160px 0 100px;
  border-bottom: 1px solid var(--line);
}

.subpage-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .95;
  letter-spacing: 0;
}

.subpage-hero p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.subpage-visual {
  min-height: 390px;
  border-radius: 48% 8px 8px 8px;
  background:
    linear-gradient(135deg, var(--section-color), rgba(29, 36, 33, .18)),
    var(--section-image) center / cover;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.subpage-content {
  padding: 110px 0 150px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.article-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  min-height: 260px;
  padding: 26px;
  border-top: 2px solid var(--section-color);
  background: rgba(255, 253, 248, .68);
  transition: transform .4s cubic-bezier(.2, .75, .2, 1), background .3s ease;
}

.article-card--featured {
  grid-column: span 6;
}

.article-card--wide {
  grid-column: span 8;
}

.article-card:hover {
  background: var(--white);
  transform: translateY(-6px);
}

.article-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 54px;
  color: var(--section-color);
  font-size: 12px;
  font-weight: 800;
}

.article-card__status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: currentColor;
}

.article-card__status--done {
  color: #9a741e;
}

.article-card__status--done::before {
  background: var(--sun);
  box-shadow: 0 0 0 3px rgba(227, 178, 79, .25);
}

.article-card h2 {
  max-width: 460px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-card p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.subpage--tech {
  --section-color: var(--forest);
  --section-image: url("https://picsum.photos/seed/circuit-journal/1200/1000");
}

.subpage--reading {
  --section-color: #b15d3c;
  --section-image: url("https://picsum.photos/seed/reading-table/1200/1000");
}

.subpage--life {
  --section-color: #9a741e;
  --section-image: url("https://picsum.photos/seed/everyday-window/1200/1000");
}

.article-card--image {
  justify-content: flex-end;
  border-top: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 29, 25, .18) 0%, rgba(20, 29, 25, .84) 100%),
    var(--card-image, var(--section-image)) center / cover;
  transition: transform .45s cubic-bezier(.2, .75, .2, 1), box-shadow .45s ease;
}

.article-card--image:hover {
  background:
    linear-gradient(180deg, rgba(20, 29, 25, .12) 0%, rgba(20, 29, 25, .8) 100%),
    var(--card-image, var(--section-image)) center / cover;
}

.article-card--image .article-card__status {
  margin-bottom: auto;
  color: var(--sun);
}

.article-card--image h2 {
  max-width: 620px;
}

.article-card--image p {
  color: rgba(255, 253, 248, .82);
}

.article-card:not(.article-card--image):hover {
  background: var(--white);
}

.slices {
  display: flex;
  gap: 14px;
  min-height: 460px;
}

.slices__item {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-end;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 29, 25, .14) 0%, rgba(20, 29, 25, .78) 100%),
    var(--slices-image) center / cover;
  box-shadow: 0 10px 30px rgba(46, 42, 31, .06);
  transition: flex .55s cubic-bezier(.2, .75, .2, 1), box-shadow .45s ease;
}

.slices:hover .slices__item {
  flex: .5;
}

.slices__item:hover {
  flex: 2.4;
  box-shadow: var(--shadow);
}

.slices__label {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.slices__reveal {
  max-width: 420px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease .08s, transform .4s cubic-bezier(.2, .75, .2, 1) .08s;
}

.slices__item:hover .slices__reveal {
  opacity: 1;
  transform: translateY(0);
}

.slices__reveal h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.slices__reveal p {
  max-width: 380px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, .85);
  font-size: 14px;
}

.quote-scrub {
  padding: clamp(120px, 16vw, 220px) 0;
}

.quote-scrub__text {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}

.quote-scrub__text span {
  opacity: .12;
  transition: opacity .2s linear;
}

.marquee {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.marquee__track {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__track span {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}

.marquee__track span:nth-child(even) {
  color: var(--section-color);
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 0 140px;
}

.post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.post__meta span::before {
  margin-right: 8px;
  color: var(--section-color);
  content: "·";
}

.post h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.post__lede {
  max-width: 640px;
  margin-bottom: 64px;
  color: var(--muted);
  font-size: 17px;
}

.post h2 {
  margin: 64px 0 18px;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.post h2::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  content: "";
  background: var(--section-color);
}

.post h3 {
  margin: 34px 0 12px;
  font-size: 17px;
  letter-spacing: 0;
}

.post p,
.post li {
  color: #3d4742;
  font-size: 16px;
}

.post p {
  margin-bottom: 18px;
}

.post ul,
.post ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.post li {
  margin-bottom: 10px;
}

.post strong {
  color: var(--ink);
}

.post code {
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--forest);
  background: var(--forest-soft);
  font-size: .92em;
}

.post pre {
  overflow-x: auto;
  margin: 20px 0 26px;
  padding: 20px 22px;
  border-radius: 8px;
  color: var(--white);
  background: #17211d;
  line-height: 1.7;
}

.post pre code {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font-size: 14px;
}

.post blockquote {
  margin: 26px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--coral);
  border-radius: 0 8px 8px 0;
  color: var(--muted);
  background: var(--coral-soft);
  font-size: 15px;
}

.post .post__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}

.post .post__back:hover {
  color: var(--forest);
}

.post a:not(.post__back) {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 3px;
  transition: color .2s ease;
}

.post a:not(.post__back):hover {
  color: var(--coral);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 150px;
  }

  .hero__visual {
    min-height: min(600px, 76vw);
  }

  .section-head,
  .archive,
  .cta,
  .subpage-hero {
    grid-template-columns: 1fr;
  }

  .archive__title {
    position: static;
  }

  .cta {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    max-width: calc(100vw - 20px);
  }

  .site-nav__inner {
    position: relative;
    min-height: 62px;
    padding-left: 16px;
  }

  .site-nav__links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 253, 248, .97);
    box-shadow: var(--shadow);
  }

  .site-nav__links.is-open {
    display: grid;
  }

  .site-nav__link {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav-toggle {
    position: absolute;
    top: 10px;
    right: 12px;
    display: grid;
    place-items: center;
  }

  .page-shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 78px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 12.5vw, 4rem);
    line-height: 1.06;
  }

  .hero h1 .inline-image,
  .hero h1 + .inline-image {
    display: none;
  }

  .mobile-break {
    display: inline;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__image {
    left: 12px;
    transform: rotate(0);
    border-radius: 24px;
  }

  .hero__caption {
    width: min(220px, 72%);
  }

  .section {
    padding: 72px 0;
  }

  .subpage-content {
    padding: 56px 0 72px;
  }

  .post {
    padding: 48px 0 72px;
  }

  .post__lede {
    margin-bottom: 40px;
  }

  .quote-scrub {
    padding: 72px 0;
  }

  .bento,
  .article-grid,
  .pathway {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .article-card,
  .article-card--featured {
    grid-column: auto;
    min-height: 165px;
    padding: 20px;
  }

  .bento-card h3,
  .article-card h2 {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
  }

  .pathway {
    min-height: auto;
  }

  .pathway__item {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .pathway__item:last-child {
    border-bottom: 0;
  }

  .subpage-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .subpage-visual {
    min-height: 300px;
  }

  .subpage-content {
    padding: 78px 0 100px;
  }

  .slices {
    flex-direction: column;
    min-height: auto;
  }

  .slices__item {
    min-height: 150px;
  }

  .slices:hover .slices__item,
  .slices__item:hover {
    flex: 1;
  }

  .slices__reveal {
    opacity: 1;
    transform: none;
  }

  .slices__label {
    writing-mode: horizontal-tb;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
