:root {
  --paper: #f7f3ea;
  --paper-deep: #eee7da;
  --ink: #18352d;
  --ink-soft: #53655f;
  --forest: #174f3c;
  --sage: #9bb19c;
  --sage-light: #dfe7dc;
  --sky: #c9dfe5;
  --terra: #c87355;
  --terra-dark: #9f4e35;
  --white: #fffdf8;
  --line: rgba(24, 53, 45, .14);
  --shadow: 0 22px 70px rgba(42, 61, 52, .12);
  --radius: 1.4rem;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .38;
  pointer-events: none;
  background-image: radial-gradient(rgba(23, 79, 60, .12) .6px, transparent .6px);
  background-size: 7px 7px;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: .7rem;
  left: .7rem;
  z-index: 1000;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2.5rem), 810px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(24, 53, 45, .1);
  background: rgba(247, 243, 234, .92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  flex: 0 0 auto;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.025em;
}

.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 2px solid var(--forest);
  border-radius: 50%;
}

.brand-mark::before {
  width: 22px;
  height: 22px;
  border-right-color: transparent;
  transform: rotate(-35deg);
}

.brand-mark::after {
  width: 7px;
  height: 7px;
  border-color: var(--terra);
  background: var(--terra);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .015em;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 2px;
  background: var(--terra);
  transition: right .25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.nav-menu-button {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6.5rem;
}

.hero::after {
  content: "RHYTHM / 01";
  position: absolute;
  right: -1.7rem;
  top: 50%;
  writing-mode: vertical-rl;
  color: rgba(24, 53, 45, .28);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .38em;
  transform: translateY(-50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 3.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.35rem;
  color: var(--terra-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.45rem;
  font-size: clamp(3.15rem, 6.3vw, 6.7rem);
  font-weight: 540;
  letter-spacing: -.062em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.4vw, 4.3rem);
  font-weight: 540;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: .65rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 560;
  letter-spacing: -.025em;
}

.hero-lead {
  max-width: 610px;
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .82rem 1.25rem;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(23, 79, 60, .18);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(23, 79, 60, .24);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.button.cream {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 3rem;
  overflow: hidden;
  border-radius: 48% 48% 1.4rem 1.4rem / 32% 32% 1.4rem 1.4rem;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.orbit-one {
  width: 112px;
  height: 112px;
  left: 0;
  top: 16%;
  color: var(--ink);
  background: var(--sky);
  font-family: var(--serif);
  font-size: 1.8rem;
  animation-delay: -.8s;
}

.orbit-two {
  width: 158px;
  height: 158px;
  left: -1rem;
  bottom: 7%;
  padding: 1.4rem;
  color: var(--white);
  background: var(--forest);
  text-align: center;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
  animation-delay: -2.2s;
}

.orbit-three {
  width: 46px;
  height: 46px;
  top: 2%;
  right: 4%;
  background: var(--terra);
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.hero-note {
  width: min(100%, 760px);
  margin: 3.5rem auto 0;
  padding-left: 1.4rem;
  border-left: 3px solid var(--terra);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-sage {
  background: var(--sage-light);
}

.section-forest {
  color: var(--white);
  background: var(--forest);
}

.section-head {
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 3rem;
}

.section-head p,
.lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-forest .section-head p,
.section-forest .lede {
  color: rgba(255, 253, 248, .72);
}

.habit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.habit-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .28s ease, transform .28s ease;
}

.habit-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.habit-number {
  color: var(--terra-dark);
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 350;
  line-height: 1;
}

.habit-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
}

.habit-card p,
.support-card p,
.article-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .91rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.support-card {
  min-height: 235px;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .28s ease;
}

.support-card:nth-child(2),
.support-card:nth-child(6) {
  grid-column: span 5;
  background: var(--sky);
}

.support-card:nth-child(3),
.support-card:nth-child(7) {
  grid-column: span 4;
  background: #ead6ca;
}

.support-card:hover {
  transform: translateY(-7px) rotate(-.6deg);
}

.support-card i {
  font-size: 1.5rem;
}

.support-card .arrow,
.article-card .arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  align-self: flex-end;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.article-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.7rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.article-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.article-card.featured {
  min-height: 420px;
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.article-card.featured:nth-child(2) {
  color: var(--ink);
  background: var(--sky);
  border-color: var(--sky);
}

.article-card.featured:nth-child(3) {
  color: var(--ink);
  background: #ead6ca;
  border-color: #ead6ca;
}

.article-card.featured:nth-child(4) {
  color: var(--ink);
  background: var(--sage-light);
  border-color: var(--sage-light);
}

.article-card.featured p {
  color: inherit;
  opacity: .75;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.2rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-card .arrow {
  margin-top: auto;
}

.journal-list {
  border-top: 1px solid var(--line);
}

.journal-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem .3rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .2s ease, color .2s ease;
}

.journal-row:hover {
  padding-left: 1rem;
  color: var(--terra-dark);
}

.journal-row span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-row strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  line-height: 1.2;
}

.manifesto {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.manifesto-mark {
  position: sticky;
  top: 130px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--terra);
  border-radius: 50% 50% 8% 50%;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
}

.manifesto-copy p {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--forest);
  border-radius: 2rem;
}

.cta-panel h2 {
  max-width: 800px;
  margin-bottom: .8rem;
}

.cta-panel p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 253, 248, .74);
}

.page-hero {
  padding: 4rem 0 5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .55fr;
  gap: 4rem;
  align-items: end;
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.page-index {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  justify-self: end;
  color: var(--white);
  background: var(--terra);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2.8rem;
  transform: rotate(8deg);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin: 0 0 2.4rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.site-header .brand {
  position: relative;
  z-index: 125;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: .45rem;
  color: var(--terra);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 260px;
  justify-content: center;
  gap: 5rem;
  padding: 4rem 0 7rem;
}

.article-header {
  margin-bottom: 3rem;
}

.article-header h1 {
  font-size: clamp(2.9rem, 6.2vw, 5.6rem);
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.4rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .78rem;
}

.byline a {
  font-weight: 800;
}

.article-body {
  color: #29443b;
}

.article-body > p:first-of-type {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.6;
}

.article-body h2 {
  margin-top: 3.7rem;
  font-size: clamp(2rem, 3.5vw, 3.05rem);
}

.article-body h3 {
  margin-top: 2.5rem;
}

.article-body p,
.article-body li {
  font-size: 1.03rem;
  line-height: 1.85;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3rem;
}

.article-bridge {
  margin-block: 2rem;
  padding: 1.15rem 1.25rem;
  background: rgba(223, 231, 220, .48);
  border-left: 3px solid var(--terra);
  border-radius: 0 14px 14px 0;
}

.article-bridge a,
.article-sources a {
  color: var(--forest);
  font-weight: 700;
  text-decoration-color: rgba(23, 79, 60, .32);
  text-underline-offset: .18em;
}

.article-sources {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.article-sources p,
.article-sources li {
  font-size: .92rem;
}

.takeaways {
  margin: 2.8rem 0;
  padding: 2rem;
  background: var(--sage-light);
  border-radius: var(--radius);
}

.takeaways h2 {
  margin-top: 0;
  font-size: 2rem;
}

.example-box {
  margin: 2.6rem 0;
  padding: 1.7rem 2rem;
  border-left: 4px solid var(--terra);
  background: var(--white);
}

.medical-note {
  margin-top: 3rem;
  padding: 1.4rem;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border-radius: 1rem;
  font-size: .82rem;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 120px;
}

.aside-card {
  margin-bottom: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.aside-card h2 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.aside-card a {
  display: block;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.reading-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 110;
  width: 0;
  height: 3px;
  background: var(--terra);
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: center;
  gap: 4rem;
  padding: 4rem 0 7rem;
}

.policy-nav {
  align-self: start;
  position: sticky;
  top: 120px;
}

.policy-nav a {
  display: block;
  padding: .62rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.policy-content h2 {
  margin-top: 3.4rem;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card i {
  color: var(--terra-dark);
  font-size: 2rem;
}

.site-footer {
  color: rgba(255, 253, 248, .82);
  background: #102e26;
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-intro {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.footer-intro .brand {
  align-self: start;
  color: var(--white);
  font-size: 1.45rem;
}

.footer-intro .brand-mark,
.footer-intro .brand-mark::before {
  border-color: var(--white);
}

.footer-intro p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,253,248,.62);
}

.company-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.25fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.company-strip h2 {
  margin-bottom: 1rem;
  color: var(--sage);
  font-family: var(--sans);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.company-strip p,
.company-strip address {
  margin: 0;
  color: rgba(255,253,248,.72);
  font-size: .74rem;
  font-style: normal;
  line-height: 1.85;
}

.company-strip a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.footer-links a {
  color: rgba(255,253,248,.76);
  font-size: .71rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-disclaimer {
  padding: 1.4rem 0;
  color: rgba(255,253,248,.5);
  font-size: .68rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0 2rem;
  color: rgba(255,253,248,.45);
  font-size: .67rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: .72rem;
    font-size: .7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
  }

  .habit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .company-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-menu-button {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    max-height: calc(100dvh - 82px);
    display: grid;
    gap: 0;
    padding: 1.3rem;
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .3s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: .85rem .4rem;
    border-bottom: 1px solid var(--line);
    font-size: .82rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .hero-image-wrap {
    left: 2.5rem;
  }

  .section-head.split,
  .page-hero-grid,
  .manifesto,
  .footer-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-index {
    justify-self: start;
    width: 110px;
    height: 110px;
  }

  .support-card,
  .support-card:nth-child(2),
  .support-card:nth-child(3),
  .support-card:nth-child(6),
  .support-card:nth-child(7) {
    grid-column: span 6;
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-mark {
    position: static;
    width: min(100%, 360px);
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .policy-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.35rem), var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    inset-block-start: 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .hero {
    padding: 3.2rem 0 4rem;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-image-wrap {
    inset-left: 1.5rem;
  }

  .orbit-one {
    width: 78px;
    height: 78px;
    font-size: 1.3rem;
  }

  .orbit-two {
    width: 112px;
    height: 112px;
    padding: .8rem;
    font-size: .57rem;
  }

  .hero-note {
    margin-top: 2.2rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .habit-grid,
  .article-grid,
  .contact-grid,
  .company-strip,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .habit-card {
    min-height: 275px;
  }

  .support-card,
  .support-card:nth-child(2),
  .support-card:nth-child(3),
  .support-card:nth-child(6),
  .support-card:nth-child(7) {
    grid-column: 1 / -1;
    min-height: 210px;
  }

  .article-card,
  .article-card.featured {
    min-height: 330px;
  }

  .journal-row {
    grid-template-columns: 1fr auto;
    gap: .4rem 1rem;
  }

  .journal-row span {
    grid-column: 1 / -1;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 3rem 0;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: clamp(2.65rem, 13vw, 4.3rem);
  }

  .article-layout {
    padding-top: 3rem;
  }

  .article-body p,
  .article-body li {
    font-size: .97rem;
  }

  .takeaways,
  .example-box {
    padding: 1.35rem;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .footer-top {
    padding-top: 3.5rem;
  }

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

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

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

body.nav-open {
  overflow: hidden;
}

.site-header {
  --header-height: 94px;
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 0;
  border-bottom: 1px solid rgba(24, 53, 45, .11);
  background: rgba(248, 245, 237, .86);
  box-shadow: none;
  backdrop-filter: blur(22px) saturate(1.12);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 240, .97);
  border-color: rgba(24, 53, 45, .16);
  box-shadow: 0 12px 35px rgba(31, 55, 46, .07);
}

.header-inner {
  width: min(calc(100% - 3rem), 1420px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  transition: min-height .35s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  min-width: max-content;
  color: var(--ink);
  font-family: var(--serif);
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--forest);
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-orbit,
.brand-wave,
.brand-accent {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-orbit {
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-dasharray: 102 24;
  transform: rotate(-22deg);
  transform-origin: center;
}

.brand-wave {
  stroke: currentColor;
  stroke-width: 2.2;
}

.brand-accent {
  stroke: var(--terra);
  stroke-width: 3.2;
}

.brand-point {
  fill: var(--terra);
}

.brand-lockup {
  display: grid;
  gap: .24rem;
}

.brand-name {
  font-size: 1.23rem;
  font-weight: 390;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.brand-name strong {
  font-weight: 700;
}

.brand-tagline {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.45rem;
}

.nav-primary,
.nav-secondary {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 1.25vw, 1.45rem);
}

.nav-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}

.main-nav .nav-desktop a {
  position: relative;
  padding: .7rem 0;
  color: #3c514a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease;
}

.main-nav .nav-secondary a {
  color: var(--ink-soft);
  font-weight: 700;
}

.main-nav .nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: .22rem;
  width: 100%;
  height: 1.5px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .32s cubic-bezier(.22, .7, .2, 1);
}

.main-nav .nav-desktop a:hover,
.main-nav .nav-desktop a[aria-current="page"] {
  color: var(--forest);
}

.main-nav .nav-desktop a:hover::after,
.main-nav .nav-desktop a[aria-current="page"]::after {
  right: 0;
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .65rem .75rem .65rem 1rem;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(23, 79, 60, .12);
  font-size: .69rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.header-cta i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
  font-size: .64rem;
  transition: transform .25s ease;
}

.header-cta:hover {
  color: var(--forest);
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.header-cta:hover i {
  color: var(--white);
  background: var(--forest);
  transform: translateX(2px);
}

.nav-mobile {
  display: none;
}

.nav-mobile:focus {
  outline: none;
}

.nav-menu-button {
  display: none;
}

.hero-home {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(201, 223, 229, .5), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 248, .58), transparent 72%);
}

.hero-home::after {
  display: none;
}

.hero-stage {
  width: min(calc(100% - 3rem), 1420px);
  min-height: 820px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(3rem, 6.5vw, 7rem);
  align-items: center;
  position: relative;
  padding: clamp(4.4rem, 7vw, 7rem) 0 0;
}

.hero-copy {
  align-self: center;
  position: relative;
  z-index: 3;
  padding-bottom: 4rem;
}

.hero-overline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
  color: var(--terra-dark);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-overline span:first-child {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.hero-overline span:first-child::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-overline span:last-child {
  color: var(--ink-soft);
  font-size: .56rem;
  letter-spacing: .1em;
}

.hero-home h1 {
  max-width: 680px;
  margin: 0 0 1.6rem;
  font-size: clamp(4.1rem, 5.35vw, 5.65rem);
  font-weight: 520;
  letter-spacing: -.058em;
  line-height: .96;
}

.hero-home h1 > span {
  display: block;
}

.hero-home h1 .hero-title-soft {
  color: var(--forest);
  font-weight: 370;
  font-style: italic;
}

.hero-home .hero-lead {
  max-width: 590px;
  margin: 0 0 2rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.28vw, 1.13rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.hero-primary {
  min-height: 58px;
  gap: 1.15rem;
  padding: .75rem .8rem .75rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(23, 79, 60, .17);
}

.hero-primary i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
  font-size: .72rem;
  transition: transform .3s ease;
}

.hero-primary:hover i {
  transform: translateX(3px) rotate(-8deg);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem .1rem;
  border-bottom: 1px solid rgba(24, 53, 45, .35);
  color: var(--ink);
  font-size: .75rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease;
}

.hero-secondary i {
  color: var(--terra-dark);
  font-size: .67rem;
  transition: transform .25s ease;
}

.hero-secondary:hover {
  color: var(--terra-dark);
  border-color: var(--terra);
}

.hero-secondary:hover i {
  transform: translateY(3px);
}

.hero-guidance {
  max-width: 520px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 1rem;
  margin-top: 2.6rem;
}

.hero-guidance > span {
  height: 1px;
  margin-top: .7rem;
  background: var(--terra);
}

.hero-guidance p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .75rem;
  line-height: 1.65;
}

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

.hero-story {
  min-width: 0;
  align-self: stretch;
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.hero-story::before {
  content: "DAILY CYCLE · 24H";
  position: absolute;
  top: 3.4rem;
  left: -1.75rem;
  z-index: 4;
  color: rgba(24, 53, 45, .5);
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .19em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-media {
  height: 680px;
  margin: 0;
  overflow: hidden;
  position: relative;
  border-radius: 220px 24px 24px 24px;
  box-shadow: 0 34px 90px rgba(43, 59, 51, .16);
  background: var(--paper-deep);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 41, 33, .24));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(.2, .72, .2, 1);
}

.hero-story:hover .hero-media img {
  transform: scale(1.035);
}

.hero-media figcaption {
  max-width: 250px;
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
  padding: 1rem 1.1rem;
  color: var(--white);
  background: rgba(17, 47, 38, .82);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
}

.hero-media figcaption span,
.hero-media figcaption strong {
  display: block;
}

.hero-media figcaption span {
  margin-bottom: .35rem;
  color: var(--sage);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 520;
  line-height: 1.35;
}

.rhythm-card {
  width: 305px;
  position: absolute;
  left: -4.7rem;
  bottom: 1.4rem;
  z-index: 5;
  padding: 1.35rem;
  background: rgba(255, 253, 248, .96);
  border: 1px solid rgba(24, 53, 45, .13);
  border-radius: 1.1rem;
  box-shadow: 0 22px 55px rgba(35, 53, 45, .15);
  backdrop-filter: blur(14px);
}

.rhythm-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
  color: var(--terra-dark);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.rhythm-card ol {
  margin: .35rem 0 0;
  padding: 0;
  list-style: none;
}

.rhythm-card li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: .65rem;
  position: relative;
  padding: .72rem 0 .2rem;
}

.rhythm-card li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 22px;
  position: absolute;
  left: 11px;
  bottom: -11px;
  background: var(--sage);
}

.rhythm-card li > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: .48rem;
  font-weight: 800;
}

.rhythm-card strong,
.rhythm-card small {
  display: block;
}

.rhythm-card strong {
  margin-bottom: .08rem;
  font-family: var(--serif);
  font-size: .91rem;
  font-weight: 600;
  line-height: 1.25;
}

.rhythm-card small {
  color: var(--ink-soft);
  font-size: .59rem;
  line-height: 1.45;
}

.hero-rhythm-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(125px, .5fr));
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-rhythm-line > div,
.hero-rhythm-line > a {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.hero-rhythm-line > div {
  padding-left: 0;
}

.hero-rhythm-line > div > span {
  flex: 0 0 auto;
  color: var(--terra-dark);
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-rhythm-line p {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: .9rem;
  line-height: 1.45;
}

.hero-rhythm-line > a {
  justify-content: space-between;
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease, background .25s ease;
}

.hero-rhythm-line > a i {
  color: var(--terra-dark);
  font-size: .62rem;
  transition: transform .25s ease;
}

.hero-rhythm-line > a:hover {
  color: var(--forest);
  background: rgba(223, 231, 220, .55);
}

.hero-rhythm-line > a:hover i {
  transform: translateX(4px);
}

.footer-intro .brand {
  align-self: start;
  color: var(--white);
  font-size: inherit;
}

.footer-intro .brand-orbit,
.footer-intro .brand-wave {
  stroke: currentColor;
}

.footer-intro .brand-tagline {
  color: rgba(255, 253, 248, .55);
}

@media (max-width: 1280px) {
  .header-inner,
  .hero-stage {
    width: min(calc(100% - 2.2rem), 1420px);
  }

  .header-inner {
    gap: 1.25rem;
  }

  .brand-tagline {
    display: none;
  }

  .nav-desktop {
    gap: 1rem;
  }

  .nav-primary,
  .nav-secondary {
    gap: .85rem;
  }

  .hero-stage {
    grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr);
    column-gap: 4.6rem;
  }

  .hero-home h1 {
    font-size: clamp(3.8rem, 5.4vw, 4.85rem);
  }

  .rhythm-card {
    left: -3.2rem;
  }
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    justify-self: end;
  }

  .nav-menu-button {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 125;
    padding: 0;
    color: var(--white);
    background: var(--forest);
    border: 1px solid var(--forest);
    border-radius: 50%;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
  }

  .nav-menu-button span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform .3s ease, width .3s ease;
  }

  .nav-menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .nav-menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .main-nav {
    width: 100%;
    height: 100dvh;
    max-height: none;
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    padding: 0;
    overflow-y: auto;
    background: var(--paper);
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .3s ease, visibility .3s ease, transform .4s cubic-bezier(.2, .72, .2, 1);
  }

  .main-nav.is-open {
    height: 100dvh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    min-height: 100dvh;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    grid-template-rows: auto 1fr auto;
    gap: 2rem 5rem;
    position: relative;
    padding: 8.3rem max(2rem, calc((100vw - 900px) / 2)) 2.3rem;
    background:
      linear-gradient(90deg, transparent 0 64%, rgba(223, 231, 220, .7) 64%),
      radial-gradient(circle at 78% 30%, rgba(201, 223, 229, .6), transparent 22rem),
      var(--paper);
  }

  .nav-mobile::before {
    content: "";
    height: 1px;
    position: absolute;
    top: 6.8rem;
    left: 2rem;
    right: 2rem;
    background: var(--line);
  }

  .mobile-nav-intro {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
  }

  .mobile-nav-intro span {
    color: var(--terra-dark);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
  }

  .mobile-nav-intro p {
    max-width: 490px;
    margin: 0;
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 1rem;
  }

  .mobile-nav-primary {
    display: grid;
    align-content: start;
  }

  .mobile-nav-primary a {
    min-height: 76px;
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
  }

  .mobile-nav-primary a:first-child {
    border-top: 1px solid var(--line);
  }

  .mobile-nav-primary a > span {
    color: var(--terra-dark);
    font-size: .58rem;
    font-weight: 800;
  }

  .mobile-nav-primary strong {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 500;
    letter-spacing: -.035em;
  }

  .mobile-nav-primary i {
    font-size: .75rem;
    transition: transform .25s ease;
  }

  .mobile-nav-primary a:hover i {
    transform: translateX(5px);
  }

  .mobile-nav-secondary {
    display: grid;
    align-content: start;
    border-top: 1px solid var(--line);
  }

  .mobile-nav-secondary a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: .77rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-start {
    grid-column: 1 / -1;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.1rem 1.3rem;
    color: var(--white);
    background: var(--forest);
    border-radius: 1rem;
    text-decoration: none;
  }

  .mobile-start span,
  .mobile-start small {
    display: block;
  }

  .mobile-start small {
    margin-bottom: .16rem;
    color: var(--sage);
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .mobile-start i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--forest);
    background: var(--white);
    border-radius: 50%;
  }

  .hero-stage {
    min-height: 760px;
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
    column-gap: 2.8rem;
  }

  .hero-home h1 {
    font-size: clamp(3.45rem, 6.6vw, 4.25rem);
  }

  .hero-overline span:last-child {
    display: none;
  }

  .hero-media {
    height: 620px;
    border-radius: 180px 20px 20px 20px;
  }

  .hero-media figcaption {
    top: 1rem;
    right: 1rem;
    bottom: auto;
  }

  .rhythm-card {
    width: 275px;
    left: -2rem;
  }

  .hero-rhythm-line {
    grid-template-columns: 1.4fr repeat(3, .6fr);
  }

  .hero-rhythm-line > div,
  .hero-rhythm-line > a {
    padding-inline: 1rem;
  }

  .hero-rhythm-line p {
    display: none;
  }
}

@media (max-width: 820px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .nav-menu-button {
    justify-self: end;
  }

  .hero-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 4.2rem;
  }

  .hero-copy {
    max-width: 680px;
    padding-bottom: 3.5rem;
  }

  .hero-home h1 {
    max-width: 660px;
    font-size: clamp(3.8rem, 10.5vw, 5.5rem);
  }

  .hero-home .hero-lead {
    max-width: 620px;
  }

  .hero-story {
    min-height: 670px;
    padding-bottom: 4.5rem;
  }

  .hero-media {
    height: 650px;
    margin-left: 8%;
  }

  .rhythm-card {
    left: 0;
    bottom: 1.4rem;
  }

  .hero-rhythm-line {
    grid-row: 3;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-rhythm-line > div {
    grid-column: 1 / -1;
    min-height: 76px;
    padding-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-rhythm-line p {
    display: block;
  }

  .hero-rhythm-line > a:first-of-type {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    --header-height: 78px;
  }

  .header-inner,
  .hero-stage {
    width: min(calc(100% - 1.4rem), 1420px);
  }

  .site-header.is-scrolled .header-inner {
    min-height: 70px;
  }

  .brand {
    gap: .58rem;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tagline {
    display: none;
  }

  .nav-menu-button {
    width: 44px;
    height: 44px;
  }

  .nav-mobile {
    display: block;
    padding: 6.7rem .7rem 1.2rem;
    background:
      radial-gradient(circle at 100% 40%, rgba(201, 223, 229, .55), transparent 16rem),
      var(--paper);
  }

  .nav-mobile::before {
    top: 5.45rem;
    left: .7rem;
    right: .7rem;
  }

  .mobile-nav-intro {
    display: block;
    margin-bottom: 1.35rem;
  }

  .mobile-nav-intro p {
    margin-top: .45rem;
    font-size: .88rem;
  }

  .mobile-nav-primary a {
    min-height: 62px;
    grid-template-columns: 28px 1fr auto;
    padding: .48rem .2rem;
  }

  .mobile-nav-primary strong {
    font-size: clamp(1.62rem, 8vw, 2.1rem);
  }

  .mobile-nav-secondary {
    grid-template-columns: 1fr 1fr;
    margin-top: 1.4rem;
  }

  .mobile-nav-secondary a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .mobile-nav-secondary a:nth-child(even) {
    padding-left: 1rem;
  }

  .mobile-start {
    min-height: 70px;
    margin-top: 1.4rem;
  }

  .hero-stage {
    padding-top: 3.25rem;
  }

  .hero-copy {
    padding-bottom: 2.8rem;
  }

  .hero-overline {
    margin-bottom: 1.25rem;
    font-size: .57rem;
  }

  .hero-home h1 {
    margin-bottom: 1.3rem;
    font-size: clamp(3.05rem, 14.2vw, 4.15rem);
    letter-spacing: -.055em;
  }

  .hero-home .hero-lead {
    font-size: .98rem;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .hero-primary {
    width: 100%;
    justify-content: space-between;
  }

  .hero-secondary {
    width: max-content;
    margin-left: .25rem;
  }

  .hero-guidance {
    grid-template-columns: 28px 1fr;
    gap: .7rem;
    margin-top: 2rem;
  }

  .hero-story {
    min-height: 555px;
    padding-bottom: 5.5rem;
  }

  .hero-story::before {
    left: -.3rem;
    font-size: .48rem;
  }

  .hero-media {
    height: 500px;
    margin-left: 1.7rem;
    border-radius: 115px 16px 16px 16px;
  }

  .hero-media figcaption {
    display: none;
  }

  .rhythm-card {
    width: calc(100% - 1.2rem);
    left: 0;
    bottom: 0;
    padding: 1rem;
  }

  .rhythm-card ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
  }

  .rhythm-card li {
    display: block;
    padding: .65rem 0 0;
  }

  .rhythm-card li:not(:last-child)::after {
    width: calc(100% - 28px);
    height: 1px;
    left: 26px;
    top: 18px;
  }

  .rhythm-card li > span {
    margin-bottom: .45rem;
  }

  .rhythm-card strong {
    font-size: .76rem;
  }

  .rhythm-card small {
    display: none;
  }

  .hero-rhythm-line {
    grid-template-columns: 1fr;
  }

  .hero-rhythm-line > div,
  .hero-rhythm-line > a {
    min-height: 64px;
  }

  .hero-rhythm-line > div {
    display: block;
    padding: 1rem 0;
  }

  .hero-rhythm-line > div > span {
    display: block;
    margin-bottom: .35rem;
  }

  .hero-rhythm-line p {
    font-size: .82rem;
  }

  .hero-rhythm-line > a {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: .25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .nav-mobile,
  .nav-menu-button span,
  .site-header,
  .header-inner {
    transition: none;
  }
}
