:root {
  --paper: #f4efe7;
  --paper-deep: #ede4d8;
  --ink: #281824;
  --aubergine: #3b1830;
  --oxblood: #6b2737;
  --wine: #8f1f43;
  --wine-dark: #761a37;
  --coral: #d97968;
  --rose: #d8a09a;
  --taupe: #8a7564;
  --line: rgba(107, 39, 55, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

html[lang="zh-Hans"] body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial,
    sans-serif;
}

html[lang="zh-Hans"] h1,
html[lang="zh-Hans"] h2,
html[lang="zh-Hans"] h3,
html[lang="zh-Hans"] blockquote,
html[lang="zh-Hans"] .wordmark {
  font-family: "Songti SC", "Noto Serif CJK SC", STSong, SimSun, Georgia,
    serif;
}

html[lang="zh-Hans"] h1 {
  max-width: 46rem;
  font-size: clamp(4.2rem, 6.7vw, 7.2rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--aubergine);
  color: white;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  min-height: 7.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem clamp(1.5rem, 4vw, 4.25rem);
}

.wordmark {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: clamp(2.4rem, 3.25vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: clamp(1.5rem, 3.4vw, 3.7rem);
  align-items: center;
}

.site-header nav a {
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.12rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header nav .language-link {
  margin-left: -0.5rem;
  border-left: 1px solid var(--line);
  padding-left: 1.35rem;
  color: var(--oxblood);
  font-weight: 650;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  align-items: center;
  overflow: hidden;
  padding: 10rem clamp(1.5rem, 6.8vw, 7rem) 4rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 49rem;
  animation: copy-in 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 2rem;
  color: var(--oxblood);
  font-size: clamp(0.71rem, 0.9vw, 0.88rem);
  font-weight: 650;
  letter-spacing: 0.27em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  max-width: 49rem;
  margin: 0;
  color: var(--aubergine);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: clamp(5rem, 7.3vw, 7.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

h2,
h3,
p {
  text-wrap: pretty;
}

h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.section-shell {
  width: min(100%, 90rem);
  margin: 0 auto;
  padding-right: clamp(1.5rem, 6.8vw, 7rem);
  padding-left: clamp(1.5rem, 6.8vw, 7rem);
}

.section-index {
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-index-light {
  color: rgba(244, 239, 231, 0.57);
}

.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--oxblood);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--coral);
}

.hero-intro {
  max-width: 39rem;
  margin: 2.4rem 0 0;
  font-size: clamp(1.05rem, 1.42vw, 1.35rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.6rem;
}

.button {
  display: inline-flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wine);
  border-radius: 0.35rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 520;
  text-align: center;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--wine);
  color: #fffaf5;
}

.button-primary:hover {
  background: var(--wine-dark);
  box-shadow: 0 12px 28px rgba(107, 39, 55, 0.16);
}

.button-secondary {
  background: rgba(244, 239, 231, 0.48);
  color: var(--wine);
}

.button-secondary:hover {
  background: rgba(216, 160, 154, 0.18);
}

.trust-line {
  max-width: 32rem;
  margin: 2rem 0 0;
  color: var(--taupe);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-art {
  position: absolute;
  top: 7.5rem;
  right: -5.5rem;
  bottom: -4rem;
  width: min(58vw, 58rem);
  pointer-events: none;
}

.memory-thread {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.thread {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thread-faint {
  stroke: rgba(107, 39, 55, 0.25);
  stroke-width: 1.1;
}

.thread-main {
  stroke: #7c2a4b;
  stroke-width: 1.9;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: draw-thread 1.45s 300ms ease-out forwards;
}

.thread-coral {
  stroke: rgba(217, 121, 104, 0.8);
  stroke-width: 1.25;
}

.thread-dashed {
  stroke: rgba(217, 121, 104, 0.72);
  stroke-width: 1.15;
  stroke-dasharray: 5 8;
}

.memory-shape {
  opacity: 0;
  animation: shape-in 900ms 250ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.shape-one {
  fill: rgba(216, 160, 154, 0.32);
}

.shape-two {
  fill: rgba(217, 121, 104, 0.5);
  animation-delay: 350ms;
}

.shape-three {
  fill: rgba(216, 160, 154, 0.29);
  animation-delay: 450ms;
}

.shape-four {
  fill: rgba(185, 170, 154, 0.34);
  animation-delay: 540ms;
}

.node {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: node-in 360ms 1s ease-out forwards;
}

.node-plum {
  fill: #792346;
}

.node-coral {
  fill: var(--coral);
}

.node-two {
  animation-delay: 1.08s;
}

.node-three {
  animation-delay: 1.16s;
}

.node-four {
  animation-delay: 1.24s;
}

.mission {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.mission h2,
.origin h2,
.principles h2,
.journal h2,
.contact-section h2 {
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  line-height: 0.98;
}

.mission-copy {
  padding-top: 2.2rem;
}

.mission-copy p,
.origin-copy > p:last-child,
.principles-heading > p,
.journal-entry > p,
.contact-inner > p {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.7;
}

.mission-copy p + p {
  margin-top: 1.6rem;
}

.mission blockquote {
  max-width: 62rem;
  margin: clamp(5rem, 8vw, 8rem) 0 0 auto;
  padding: 1.4rem 0 1.4rem clamp(2rem, 4vw, 4.4rem);
  border-left: 1px solid var(--coral);
  color: var(--aubergine);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.origin {
  padding-bottom: clamp(7rem, 11vw, 11rem);
}

.origin-card {
  position: relative;
  display: grid;
  min-height: 35rem;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--paper-deep);
}

.origin-card::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(107, 39, 55, 0.2);
  border-radius: 50%;
  content: "";
}

.origin-number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--rose);
  color: rgba(59, 24, 48, 0.78);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: clamp(18rem, 31vw, 32rem);
  line-height: 0.58;
  letter-spacing: -0.1em;
}

.origin-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 45rem;
  padding: clamp(3rem, 7vw, 7rem);
}

.origin-copy h2 {
  margin-bottom: 2.25rem;
}

.name-story {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  padding-top: clamp(6rem, 10vw, 10rem);
}

.name-figure {
  margin: 0;
  padding: clamp(2rem, 4.5vw, 4rem);
  border: 1px solid var(--line);
  background: rgba(237, 228, 216, 0.5);
}

.word-shift {
  color: var(--aubergine);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: clamp(3.6rem, 7vw, 6.7rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.word-shift > div {
  display: flex;
  align-items: baseline;
}

.moving-letters {
  color: var(--wine);
}

.word-shift-result .moving-letters {
  color: var(--coral);
}

.shift-line {
  position: relative;
  display: block;
  width: min(100%, 19rem);
  height: 2.9rem;
  margin: 0.75rem 0 0.95rem;
}

.shift-line::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--line), var(--coral));
}

.shift-line::after {
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--coral);
  border-right: 1px solid var(--coral);
  content: "";
  transform: rotate(45deg);
}

.shift-line i {
  position: absolute;
  top: calc(50% - 5px);
  left: 47%;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.name-figure figcaption {
  max-width: 25rem;
  margin-top: 2.4rem;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.name-story-copy h2 {
  margin-bottom: 2rem;
  color: var(--aubergine);
  font-size: clamp(3.2rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.name-story-copy > p:not(.section-kicker):not(.name-caveat) {
  margin: 0;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.72;
}

.name-story-copy > p + p:not(.name-caveat) {
  margin-top: 1.45rem;
}

.name-story-copy strong {
  color: var(--aubergine);
  font-weight: 650;
}

.name-story-copy em {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia,
    serif;
  font-size: 1.08em;
}

.name-caveat {
  max-width: 37rem;
  margin: 2.2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--taupe);
  font-size: 0.78rem;
  line-height: 1.6;
}

.explore-section {
  position: relative;
  overflow: hidden;
  background: var(--aubergine);
  color: var(--paper);
  padding: clamp(7rem, 11vw, 11rem) 0;
}

.explore-section::before {
  position: absolute;
  top: 10%;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(217, 121, 104, 0.18);
  border-radius: 47% 53% 38% 62%;
  content: "";
  transform: rotate(24deg);
}

.explore-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.5fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.explore-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -0.5rem;
}

.explore-heading h2 {
  max-width: 55rem;
  font-size: clamp(3.5rem, 6.3vw, 6.7rem);
  line-height: 0.95;
}

.explore-heading > p:last-child {
  margin: 0 0 0.5rem;
  color: rgba(244, 239, 231, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(4rem, 8vw, 8rem);
  background: rgba(244, 239, 231, 0.18);
}

.explore-card {
  min-height: 25rem;
  padding: clamp(2rem, 3.6vw, 3.6rem);
  background: var(--aubergine);
  transition: background 220ms ease;
}

.explore-card:hover {
  background: #49213b;
}

.explore-card > span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.explore-card h3 {
  margin-top: 8rem;
  font-size: clamp(3.2rem, 4vw, 4.5rem);
}

.explore-card p {
  margin: 1.4rem 0 0;
  color: rgba(244, 239, 231, 0.76);
  line-height: 1.7;
}

.principles {
  padding-top: clamp(7rem, 11vw, 11rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
}

.principles-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.principles-heading > p {
  margin-bottom: 0.35rem;
}

.principles-list {
  margin-top: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.principles-list article {
  display: grid;
  grid-template-columns: 4rem minmax(12rem, 0.75fr) minmax(16rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.principles-list span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.principles-list h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
}

.principles-list p {
  max-width: 34rem;
  margin: 0;
  color: var(--taupe);
  line-height: 1.65;
}

.journal {
  padding-bottom: clamp(7rem, 11vw, 11rem);
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.journal-entry {
  align-self: start;
  padding: clamp(2.3rem, 4vw, 4rem);
  border-top: 2px solid var(--wine);
  background: rgba(237, 228, 216, 0.66);
}

.journal-meta {
  margin: 0 0 2.5rem;
  color: var(--taupe);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-entry h3 {
  margin-bottom: 1.7rem;
  font-size: clamp(2.25rem, 3.2vw, 3.4rem);
  line-height: 1.05;
}

.journal-entry > p + p {
  margin-top: 1.25rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--rose);
}

.contact-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(7rem, 11vw, 10rem);
}

.contact-inner h2 {
  max-width: 58rem;
  color: var(--aubergine);
}

.contact-inner > p {
  max-width: 43rem;
  margin-top: 2rem;
}

.contact-button {
  gap: 2rem;
  margin-top: 2.7rem;
}

.contact-thread {
  position: absolute;
  top: -10rem;
  right: -7rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(107, 39, 55, 0.25);
  border-radius: 47% 53% 62% 38%;
  transform: rotate(18deg);
}

.contact-thread span {
  position: absolute;
  border: 1px solid rgba(107, 39, 55, 0.2);
  border-radius: 50%;
}

.contact-thread span:nth-child(1) {
  inset: 4rem;
}

.contact-thread span:nth-child(2) {
  inset: 9rem;
}

.contact-thread span:nth-child(3) {
  top: 49%;
  left: 49%;
  width: 1rem;
  height: 1rem;
  border: 0;
  background: var(--wine);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4.5rem clamp(1.5rem, 6.8vw, 7rem) 2rem;
}

.footer-top,
.footer-bottom {
  width: min(100%, 76rem);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: baseline;
  padding-bottom: 4rem;
}

.footer-wordmark {
  color: var(--paper);
}

.footer-top p,
.footer-top > a:last-child {
  margin: 0;
  color: rgba(244, 239, 231, 0.72);
  line-height: 1.6;
}

.footer-top > a:last-child {
  justify-self: end;
  text-underline-offset: 0.3rem;
}

.footer-bottom {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(244, 239, 231, 0.17);
  color: rgba(244, 239, 231, 0.55);
  font-size: 0.76rem;
  line-height: 1.55;
}

.footer-bottom > p {
  margin: 0;
}

.footer-bottom details {
  position: relative;
  max-width: 31rem;
  text-align: right;
}

.footer-bottom summary {
  cursor: pointer;
  color: rgba(244, 239, 231, 0.72);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.footer-bottom details div {
  margin-top: 1rem;
}

.footer-bottom details p {
  margin: 0;
}

.footer-bottom details p + p {
  margin-top: 0.8rem;
}

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

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes draw-thread {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes shape-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes node-in {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  }

  .hero-art {
    right: -13rem;
    opacity: 0.72;
    width: 65rem;
  }

  .mission-grid,
  .explore-heading,
  .principles-heading,
  .journal-grid,
  .name-story {
    gap: 3rem;
  }

  .origin-card {
    grid-template-columns: 14rem 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 6rem;
  }

  .site-header {
    min-height: 6rem;
    padding: 1.25rem 1.25rem;
  }

  .wordmark {
    font-size: 2.35rem;
  }

  .site-header nav {
    gap: 1rem;
  }

  .site-header nav a {
    font-size: 0.82rem;
  }

  .site-header nav .language-link {
    margin-left: 0;
    padding-left: 0.85rem;
  }

  .site-header nav a:nth-child(2),
  .site-header nav a:nth-child(3) {
    display: none;
  }

  .hero {
    display: block;
    min-height: 100svh;
    padding: 9rem 1.5rem 3rem;
  }

  .hero-copy {
    max-width: 37rem;
  }

  h1 {
    max-width: 35rem;
    font-size: clamp(4.1rem, 18vw, 6.3rem);
  }

  .hero-intro {
    max-width: 31rem;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    top: auto;
    right: -17rem;
    bottom: -20rem;
    width: 46rem;
    height: 43rem;
    opacity: 0.3;
  }


  .section-shell {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .mission-grid,
  .explore-heading,
  .principles-heading,
  .journal-grid,
  .name-story {
    grid-template-columns: 1fr;
  }

  .name-figure {
    order: 2;
  }

  .name-story-copy {
    order: 1;
  }

  .mission-copy {
    padding-top: 0;
  }

  .mission blockquote {
    padding-left: 1.5rem;
  }

  .origin-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .origin-number {
    height: 13rem;
    justify-content: flex-start;
    padding-left: 1rem;
    font-size: 16rem;
    line-height: 0.69;
  }

  .origin-copy {
    padding: 3rem 1.5rem 4rem;
  }

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

  .explore-card {
    min-height: 20rem;
  }

  .explore-card h3 {
    margin-top: 5rem;
  }

  .principles-list article {
    grid-template-columns: 2.5rem 1fr;
    gap: 1.25rem;
  }

  .principles-list article p {
    grid-column: 2;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top > a:last-child {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom details {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-inline: 1.25rem;
  }

  .eyebrow {
    max-width: 18rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
