:root {
  --ink: #0a0a0a;
  --paper: #f3f0e8;
  --paper-bright: #fbfaf6;
  --muted: #6e6d67;
  --line: rgba(10, 10, 10, 0.16);
  --line-dark: rgba(243, 240, 232, 0.18);
  --signal: #d8ff5f;
  --max: 1220px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 1.25rem;
  --header-height: 5.25rem;
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-weight: 500;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  background: var(--signal);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.shell {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--paper);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.6rem;
}

.brand small {
  color: rgba(243, 240, 232, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.site-nav a {
  position: relative;
  color: rgba(243, 240, 232, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  content: "";
  height: 1px;
  inset: auto 0 -0.45rem;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.hero-media,
.about-hero-media {
  position: absolute;
  z-index: -2;
  inset: -3rem 0;
  width: 100%;
  height: calc(100% + 6rem);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-y, 0), 0) scale(1.035);
  will-change: transform;
}

.hero::after,
.about-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.97) 0%, rgba(3, 3, 3, 0.88) 28%, rgba(3, 3, 3, 0.34) 67%, rgba(3, 3, 3, 0.15) 100%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.72), transparent 32%);
}

.hero-content {
  width: min(43rem, 88vw);
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 9rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(216, 255, 95, 0.12);
}

.hero .eyebrow,
.about-hero .eyebrow,
.toolbox .eyebrow {
  color: rgba(243, 240, 232, 0.58);
}

.hero-brand {
  margin: 0 0 1.1rem;
  font-size: clamp(5.4rem, 13vw, 10.75rem);
  font-weight: 830;
  line-height: 0.78;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.hero-brand span {
  color: var(--signal);
  font-size: 0.23em;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-0.7em);
}

.hero h1 {
  max-width: 18ch;
  margin: 2.2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero-copy {
  max-width: 36rem;
  margin: 0;
  color: rgba(243, 240, 232, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button.secondary {
  border-color: var(--line-dark);
  background: rgba(243, 240, 232, 0.04);
  color: var(--paper);
}

.button.secondary:hover {
  border-color: rgba(243, 240, 232, 0.45);
  background: rgba(243, 240, 232, 0.1);
}

.hero-index {
  position: absolute;
  inset: auto var(--gutter) 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(243, 240, 232, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-index span:last-child {
  color: var(--signal);
}

.section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) minmax(18rem, 1.55fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-head .eyebrow {
  align-self: start;
  margin-top: 0.4rem;
}

.section-head h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.section-description {
  max-width: 43rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.toolbox .section-description {
  color: rgba(243, 240, 232, 0.7);
}

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

.app-card {
  --app-accent: var(--signal);
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  isolation: isolate;
}

.app-card:last-child {
  border-right: 0;
}

.app-card:nth-child(3n) {
  border-right: 0;
}

.app-card::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 18rem;
  height: 18rem;
  top: 4rem;
  right: -7rem;
  border: 1px solid color-mix(in srgb, var(--app-accent) 42%, transparent);
  border-radius: 50%;
  transform: scale(0.8);
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease;
}

.app-card:hover::before {
  transform: scale(1);
  opacity: 1;
}

.app-number {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-icon {
  width: clamp(6rem, 10vw, 8.5rem);
  height: clamp(6rem, 10vw, 8.5rem);
  aspect-ratio: 1;
  object-fit: cover;
  margin: clamp(3.5rem, 6vw, 5rem) 0 0;
  border-radius: 22%;
  box-shadow: 0 1.4rem 3.5rem rgba(10, 10, 10, 0.18);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 320ms ease;
}

.app-card:hover .app-icon {
  transform: translateY(-0.5rem) rotate(-2deg);
  box-shadow: 0 2rem 4.5rem rgba(10, 10, 10, 0.24);
}

.app-card h3 {
  margin: clamp(3rem, 5vw, 4.5rem) 0 0.55rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}

.app-card > p {
  min-height: 4.8em;
  margin: 0;
  color: var(--muted);
}

.app-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 760;
}

.app-link b {
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.app-card:hover .app-link b {
  transform: translate(0.2rem, -0.2rem);
}

.handyhive {
  --app-accent: #f6b700;
}

.rafihive {
  --app-accent: #126c65;
}

.scancomb {
  --app-accent: #2854d1;
}

.toolbox {
  background: var(--ink);
  color: var(--paper);
}

.toolbox .section-head h2 {
  max-width: 15ch;
}

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

.tool-card {
  --tool-accent: var(--signal);
  position: relative;
  isolation: isolate;
  aspect-ratio: 1;
  min-height: 23rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2vw, 1.9rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  color: inherit;
  text-decoration: none;
  transition: background-color 220ms ease;
}

.tool-grid:has(.card-details[open]) .tool-card {
  aspect-ratio: auto;
}

.tool-card::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 16rem;
  height: 16rem;
  top: -7rem;
  right: -7rem;
  border: 1px solid color-mix(in srgb, var(--tool-accent) 42%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--tool-accent) 5%, transparent);
  transform: scale(0.72);
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease;
}

.tool-card:hover {
  background: #11120e;
}

.tool-card:hover::before {
  transform: scale(1);
  opacity: 1;
}

.tool-icon {
  width: clamp(4.25rem, 6vw, 4.9rem);
  height: clamp(4.25rem, 6vw, 4.9rem);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: clamp(0.9rem, 1.4vw, 1.1rem);
  border: 1px solid color-mix(in srgb, var(--tool-accent) 46%, transparent);
  border-radius: 22%;
  color: var(--tool-accent);
  background: color-mix(in srgb, var(--tool-accent) 10%, transparent);
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    background-color 220ms ease;
}

.tool-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tool-icon path,
.tool-icon rect {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-card:hover .tool-icon {
  transform: translateY(-0.45rem) rotate(-2deg);
  border-color: color-mix(in srgb, var(--tool-accent) 78%, transparent);
  background: color-mix(in srgb, var(--tool-accent) 16%, transparent);
}

.tool-card h3 {
  max-width: 13ch;
  min-height: 2em;
  margin: clamp(1.75rem, 2.5vw, 2.25rem) 0 0.65rem;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.tool-card > p {
  min-height: 3.2em;
  margin: 0;
  color: rgba(243, 240, 232, 0.58);
}

.tool-aito {
  --tool-accent: #f0c75e;
}

.tool-sentry {
  --tool-accent: #66d6bd;
}

.tool-cost {
  --tool-accent: #ff9366;
}

.tool-devops {
  --tool-accent: #76a7ff;
}

.tool-terraform {
  --tool-accent: #b091ff;
}

.card-details {
  position: relative;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.card-details summary {
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
  transition: color 160ms ease;
}

.card-details summary::-webkit-details-marker {
  display: none;
}

.card-details summary:hover,
.card-details[open] summary {
  color: var(--ink);
}

.details-toggle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 220ms ease;
}

.card-details[open] .details-toggle {
  transform: rotate(45deg);
}

.card-details-content {
  padding: 0.5rem 0 1.25rem;
  animation: details-in 240ms both ease;
}

.card-details-content strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-details-content p {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@keyframes details-in {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }
}

.tool-card .card-details {
  margin-top: 0.5rem;
  border-color: var(--line-dark);
}

.tool-card .card-details summary {
  min-height: 2.75rem;
  padding-block: 0.65rem;
  color: rgba(243, 240, 232, 0.52);
}

.tool-card .card-details summary:hover,
.tool-card .card-details[open] summary {
  color: var(--tool-accent);
}

.tool-card .card-details-content strong {
  color: var(--tool-accent);
}

.tool-card .card-details-content p {
  color: rgba(243, 240, 232, 0.65);
}

.tool-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  color: rgba(243, 240, 232, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-dark);
}

.tool-meta b {
  color: var(--paper);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.tool-card:hover .tool-meta b {
  transform: translate(0.2rem, -0.2rem);
}

.tool-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 750;
  text-underline-offset: 0.25rem;
}

.studio-note {
  background: var(--signal);
  color: var(--ink);
}

.studio-note-inner {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.studio-note .eyebrow::before {
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(10, 10, 10, 0.1);
}

.studio-note h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.studio-note p {
  max-width: 42rem;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.studio-note .text-link {
  margin-top: 2rem;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}

.site-footer {
  padding-block: 3rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 3rem;
  align-items: end;
}

.footer-statement {
  max-width: 27rem;
  margin: 1.2rem 0 0;
  color: rgba(243, 240, 232, 0.52);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.55rem 2rem;
}

.footer-nav a {
  color: rgba(243, 240, 232, 0.7);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--signal);
}

.copyright {
  color: rgba(243, 240, 232, 0.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  isolation: isolate;
  min-height: min(88svh, 58rem);
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--ink);
  color: var(--paper);
}

.about-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.88) 38%, rgba(3, 3, 3, 0.2) 78%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.82), transparent 50%);
}

.about-hero-content {
  width: min(48rem, 90vw);
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.about-hero h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.about-hero p {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: rgba(243, 240, 232, 0.68);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(3rem, 8vw, 9rem);
}

.story-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.story-copy {
  max-width: 47rem;
}

.story-copy p {
  margin: 0 0 1.3rem;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.team-section {
  padding-top: 0;
}

.team-section .story-grid {
  padding-top: clamp(5.5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.identity-band {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 10vw, 10rem);
  min-height: 42rem;
}

.identity-mark {
  position: relative;
  width: min(25rem, 75vw);
  margin-inline: auto;
}

.identity-mark::before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: -20%;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.identity-mark::after {
  position: absolute;
  z-index: 0;
  content: "";
  inset: -40%;
  border: 1px solid rgba(243, 240, 232, 0.08);
  border-radius: 50%;
}

.identity-mark img {
  position: relative;
  z-index: 1;
  border-radius: 24%;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.6);
}

.identity-copy .eyebrow {
  color: rgba(243, 240, 232, 0.54);
}

.identity-copy h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.identity-copy p {
  max-width: 34rem;
  margin: 2rem 0 0;
  color: rgba(243, 240, 232, 0.62);
  font-size: 1.08rem;
}

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

.principle {
  min-height: 22rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

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

.principle span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.principle h3 {
  max-width: 10ch;
  margin: 6rem 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.principle p {
  margin: 0;
  color: var(--muted);
}

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

.work-strip a {
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.work-strip a:last-child {
  border-right: 0;
}

.work-strip a:hover {
  background: var(--ink);
  color: var(--paper);
}

.work-strip span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-strip strong {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.home-journal {
  background: var(--paper-bright);
}

.home-journal-story {
  display: grid;
  grid-template-columns: minmax(9rem, 0.45fr) minmax(20rem, 1.55fr) auto;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-block: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.home-journal-date,
.home-journal-meta {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-journal-story h3 {
  max-width: 18ch;
  margin: 0.65rem 0 0.9rem;
  font-size: clamp(2rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  transition: color 180ms ease;
}

.home-journal-story p {
  max-width: 45rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-journal-arrow {
  font-size: 1.8rem;
  transition: transform 180ms ease;
}

.home-journal-story:hover h3 {
  color: #507000;
}

.home-journal-story:hover .home-journal-arrow {
  transform: translate(0.3rem, -0.3rem);
}

.journal-page {
  background: var(--paper-bright);
}

.journal-hero {
  position: relative;
  min-height: min(86svh, 58rem);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: calc(var(--header-height) + 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 78% 30%, rgba(216, 255, 95, 0.11), transparent 28rem),
    var(--ink);
  color: var(--paper);
}

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

.journal-hero-inner > *,
.article-hero-grid > * {
  animation: journal-in 720ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journal-hero-inner > :nth-child(2),
.article-hero-grid > :nth-child(2) {
  animation-delay: 90ms;
}

.journal-hero-inner > :nth-child(3) {
  animation-delay: 180ms;
}

@keyframes journal-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
}

.journal-hero .eyebrow {
  color: rgba(243, 240, 232, 0.56);
}

.journal-hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(5rem, 14vw, 11.5rem);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.06em;
}

.journal-hero-foot {
  width: min(100%, 54rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  margin: clamp(3rem, 7vw, 6rem) 0 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
}

.journal-hero-foot p {
  max-width: 38rem;
  margin: 0;
  color: rgba(243, 240, 232, 0.66);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.journal-hero-foot a {
  color: var(--signal);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.journal-watermark {
  position: absolute;
  right: -0.04em;
  bottom: -0.24em;
  color: transparent;
  font-size: clamp(9rem, 28vw, 26rem);
  font-weight: 750;
  line-height: 0.8;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(243, 240, 232, 0.08);
  user-select: none;
}

.journal-feature {
  background: var(--paper-bright);
}

.featured-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 36rem;
  border-block: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.featured-story-media {
  position: relative;
  min-height: 33rem;
  overflow: hidden;
}

.featured-story-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.68), transparent 45%);
}

.featured-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
  transition:
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 300ms ease;
}

.featured-story-media span {
  position: absolute;
  z-index: 1;
  inset: auto 1.5rem 1.5rem;
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--signal);
}

.featured-story-copy > span {
  margin-bottom: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-story-copy h2 {
  margin: 4rem 0 1.2rem;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.featured-story-copy p {
  margin: 0;
  color: rgba(10, 10, 10, 0.68);
}

.featured-story-copy b {
  margin-top: 2rem;
  font-size: 0.82rem;
  font-weight: 650;
}

.featured-story:hover .featured-story-media img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.05);
}

.journal-archive {
  padding-top: 0;
  background: var(--paper-bright);
}

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

.journal-row {
  display: grid;
  grid-template-columns: 3rem 8rem minmax(20rem, 1fr) minmax(9rem, auto) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 180ms ease;
}

.journal-row-number,
.journal-row-date,
.journal-row-meta {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journal-row strong {
  display: block;
  max-width: 28ch;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.journal-row small {
  max-width: 48rem;
  display: block;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.journal-row-arrow {
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.journal-row:hover {
  padding-inline: 1rem;
}

.journal-row:hover .journal-row-arrow {
  transform: translate(0.25rem, -0.25rem);
}

.journal-beats {
  background: var(--ink);
  color: var(--paper);
}

.journal-beats-intro {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.journal-beats-intro .eyebrow {
  color: rgba(243, 240, 232, 0.55);
}

.journal-beats-intro h2 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.beat-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 8vw, 7rem);
  border-block: 1px solid var(--line-dark);
}

.beat-list > div {
  min-height: 18rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line-dark);
}

.beat-list > div:last-child {
  border-right: 0;
}

.beat-list span {
  color: var(--signal);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.beat-list strong {
  display: block;
  margin-top: 5rem;
  font-size: 1.35rem;
  font-weight: 500;
}

.beat-list p {
  margin: 0.7rem 0 0;
  color: rgba(243, 240, 232, 0.55);
}

.journal-contact {
  margin-top: 2rem;
  color: var(--signal);
}

.reading-progress {
  position: fixed;
  z-index: 100;
  inset: 0 auto auto 0;
  width: var(--reading-progress, 0%);
  height: 3px;
  background: var(--signal);
  pointer-events: none;
}

.article-page {
  background: var(--paper-bright);
}

.article-hero {
  padding: calc(var(--header-height) + clamp(5rem, 10vw, 9rem)) 0
    clamp(4rem, 8vw, 7rem);
  background: var(--paper-bright);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: clamp(2rem, 7vw, 8rem);
}

.article-back {
  display: inline-block;
  margin-bottom: 4rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
}

.article-hero .eyebrow {
  margin-bottom: 0;
}

.article-hero h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.article-deck {
  max-width: 44rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-cover {
  position: relative;
  height: clamp(24rem, 56vw, 45rem);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.article-cover::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 10, 10, 0.72), transparent 35%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.2), transparent);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) contrast(1.06);
}

.article-cover figcaption {
  position: absolute;
  z-index: 1;
  right: var(--gutter);
  bottom: 1.5rem;
  color: rgba(243, 240, 232, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-body {
  width: min(100% - var(--gutter) * 2, 46rem);
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 9rem);
  color: #24241f;
  font-size: clamp(1.08rem, 1.6vw, 1.23rem);
  line-height: 1.72;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
  margin: 0 0 1.65rem;
}

.article-body .article-lead {
  margin-bottom: 3rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
}

.article-body h2 {
  margin: 4.5rem 0 1.4rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.article-body h3 {
  margin: 3rem 0 1rem;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 500;
}

.article-body a {
  text-decoration-color: #8dab26;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.article-body blockquote {
  margin-block: 3.5rem;
  padding: 1.5rem 0 1.5rem clamp(1.5rem, 4vw, 3rem);
  border-left: 4px solid var(--signal);
  color: var(--ink);
  font-size: clamp(1.65rem, 3.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.article-body li {
  margin-bottom: 0.65rem;
  padding-left: 0.5rem;
}

.article-end {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--signal);
}

.article-end p {
  margin: 0 0 2rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-end h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.article-end > .shell > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
}

.legal-page {
  min-height: 70svh;
  padding: calc(var(--header-height) + clamp(5rem, 10vw, 9rem)) 0
    clamp(5.5rem, 10vw, 9rem);
}

.legal-intro {
  max-width: 52rem;
}

.legal-intro h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.legal-intro > p:last-child {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.legal-details {
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}

.legal-row {
  display: grid;
  grid-template-columns: minmax(12rem, 0.55fr) minmax(18rem, 1.45fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-row h2,
.legal-row p {
  margin: 0;
}

.legal-row h2 {
  font-size: 1rem;
  line-height: 1.4;
}

.legal-row p {
  color: var(--muted);
  white-space: pre-line;
}

.contact-options {
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) minmax(18rem, 1.1fr) minmax(16rem, 0.8fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 13rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 180ms ease;
}

.contact-row:hover {
  padding-inline: 1rem;
}

.contact-row-label {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.contact-row p {
  margin: 0;
  color: var(--muted);
}

.contact-row-arrow {
  font-size: 1.8rem;
  transition: transform 180ms ease;
}

.contact-row:hover .contact-row-arrow {
  transform: translate(0.25rem, -0.25rem);
}

.contact-guide {
  background: var(--ink);
  color: var(--paper);
}

.contact-guide-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.contact-guide h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.contact-checklist {
  border-top: 1px solid var(--line-dark);
}

.contact-checklist div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--line-dark);
}

.contact-checklist span {
  color: var(--signal);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.contact-checklist p {
  margin: 0;
  color: rgba(243, 240, 232, 0.68);
  font-size: 1.08rem;
}

.direct-email {
  margin-top: 2rem;
  color: var(--signal);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 750;
  text-underline-offset: 0.3rem;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: var(--ink);
  color: var(--paper);
}

.not-found-inner {
  width: min(42rem, 100%);
}

.not-found-code {
  margin: 0;
  color: var(--signal);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.not-found h1 {
  margin: 1rem 0;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.85;
  letter-spacing: -0.045em;
}

.not-found p {
  max-width: 32rem;
  color: rgba(243, 240, 232, 0.65);
  font-size: 1.1rem;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > * {
  animation: hero-in 780ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-content > :nth-child(2) {
  animation-delay: 80ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 140ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 200ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 260ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.7rem;
  }

  .nav-menu {
    position: relative;
  }

  .js .nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0;
    border: 0;
    background: transparent;
    color: var(--paper);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 1.2rem;
    height: 1px;
    display: block;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before {
    position: absolute;
    top: -0.35rem;
  }

  .menu-lines::after {
    position: absolute;
    top: 0.35rem;
  }

  .nav-menu.is-open .menu-lines {
    background: transparent;
  }

  .nav-menu.is-open .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-menu.is-open .menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(18rem, calc(100vw - 2.5rem));
    display: grid;
    align-items: stretch;
    padding: 0.75rem;
    border: 1px solid var(--line-dark);
    border-radius: 1rem;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  }

  .js .site-nav {
    display: none;
  }

  .js .nav-menu.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 0.8rem;
  }

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

  .hero-media {
    object-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.95) 0%, rgba(3, 3, 3, 0.78) 58%, rgba(3, 3, 3, 0.24) 100%),
      linear-gradient(0deg, rgba(3, 3, 3, 0.85), transparent 45%);
  }

  .hero-content {
    padding-bottom: 10rem;
  }

  .section-head,
  .story-grid,
  .studio-note-inner,
  .journal-beats-intro,
  .article-hero-grid,
  .contact-guide-grid,
  .legal-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 1rem;
  }

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

  .app-card,
  .principle {
    min-height: 27rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .app-card:last-child,
  .principle:last-child {
    border-bottom: 0;
  }

  .app-card:nth-child(3n) {
    border-right: 0;
  }

  .app-icon {
    margin-top: 3rem;
  }

  .app-card p {
    min-height: 0;
  }

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

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

  .home-journal-story {
    grid-template-columns: 1fr auto;
  }

  .home-journal-date {
    grid-column: 1 / -1;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .featured-story-media {
    min-height: min(65vw, 30rem);
  }

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

  .beat-list > div:nth-child(2) {
    border-right: 0;
  }

  .beat-list > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

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

  .journal-row-date,
  .journal-row-meta {
    grid-column: 2;
  }

  .journal-row > span:nth-child(3) {
    grid-column: 2;
  }

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

  .article-back {
    margin-bottom: 1.5rem;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }

  .identity-grid {
    grid-template-columns: 1fr;
    padding-block: 7rem;
  }

  .identity-copy {
    order: -1;
  }

  .contact-row {
    grid-template-columns: 1fr auto;
    gap: 1rem 2rem;
    padding-block: 2.5rem;
  }

  .contact-row-label,
  .contact-row p {
    grid-column: 1 / -1;
  }

  .contact-row h2 {
    grid-column: 1;
  }

  .contact-row-arrow {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .hero-brand {
    font-size: clamp(5rem, 24vw, 7rem);
  }

  .hero h1 {
    max-width: 13ch;
  }

  .hero-index {
    align-items: flex-end;
  }

  .hero-index span:first-child {
    max-width: 15rem;
  }

  .section-head h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .contact-row:hover {
    padding-inline: 0;
  }

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

  .tool-card {
    min-height: 22rem;
  }

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

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

  .journal-hero {
    min-height: 86svh;
  }

  .journal-hero h1 {
    font-size: clamp(4.5rem, 24vw, 7.5rem);
  }

  .journal-hero-foot {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-journal-story {
    grid-template-columns: 1fr auto;
  }

  .home-journal-story > div {
    grid-column: 1;
  }

  .home-journal-arrow {
    grid-column: 2;
    grid-row: 2;
  }

  .beat-list {
    grid-template-columns: 1fr;
  }

  .beat-list > div,
  .beat-list > div:nth-child(2) {
    min-height: 14rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .beat-list > div:last-child {
    border-bottom: 0;
  }

  .beat-list strong {
    margin-top: 3rem;
  }

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

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

  .journal-row:hover {
    padding-inline: 0;
  }

  .article-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .article-cover {
    height: 23rem;
  }

  .article-body {
    width: min(100% - 2.5rem, 46rem);
  }

  .about-hero-media {
    object-position: 62% center;
  }

  .about-hero::after {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.95), rgba(3, 3, 3, 0.48)),
      linear-gradient(0deg, rgba(3, 3, 3, 0.92), transparent 60%);
  }

  .about-hero h1 {
    font-size: clamp(3.8rem, 20vw, 6.5rem);
  }

  .principle {
    min-height: 18rem;
  }

  .principle h3 {
    margin-top: 4rem;
  }

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

  .work-strip a {
    min-height: 9rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .work-strip a:last-child {
    border-bottom: 0;
  }
}

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

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

  .hero-media,
  .about-hero-media {
    transform: none;
  }

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