:root {
  --color-paper-ivory: #e8ddd0;
  --color-warm-gray-brown: #b39981;
  --color-deep-brown: #493a2f;
  --color-dust-orange: #db6a34;
  --color-faded-blue-gray: #67778d;
  --color-cream-white: #fff9f1;
  --surface-page: var(--color-paper-ivory);
  --surface-sheet: #f6eee4;
  --surface-inset: #eee1d1;
  --surface-panel: var(--color-cream-white);
  --surface-device: #f8f1e6;
  --surface-device-shadow: #d9c6b0;
  --text-strong: var(--color-deep-brown);
  --text-body: #65594d;
  --text-muted: #887a69;
  --rule-quiet: #d6c3af;
  --landscape-gold: #edb36b;
  --landscape-earth: #c7925f;
  --landscape-shadow: #8a684e;
  --effect-shadow: 0 24px 60px rgba(73, 58, 47, 0.12);
  --effect-shadow-soft: 0 12px 30px rgba(73, 58, 47, 0.08);
  --effect-paper-grain:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0, transparent 32%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.14) 0, transparent 24%),
    repeating-linear-gradient(
      0deg,
      rgba(73, 58, 47, 0.022) 0,
      rgba(73, 58, 47, 0.022) 1px,
      transparent 1px,
      transparent 5px
    );
  --page: var(--surface-page);
  --paper: var(--surface-sheet);
  --paper-strong: var(--surface-inset);
  --paper-bright: var(--surface-panel);
  --ink: var(--text-strong);
  --ink-soft: var(--text-body);
  --ink-muted: var(--text-muted);
  --accent: var(--color-dust-orange);
  --accent-soft: #f6c2a2;
  --navy: var(--color-faded-blue-gray);
  --rule: var(--rule-quiet);
  --shadow: var(--effect-shadow);
  --shadow-soft: var(--effect-shadow-soft);
  --sheet-width: min(920px, calc(100vw - 96px));
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Instrument Sans", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(180deg, #efe7db 0%, var(--page) 100%);
  color: var(--ink);
  font-family: var(--font-sans);
}

a {
  color: inherit;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 30px 24px 104px;
}

.dispatch-sheet {
  position: relative;
  width: var(--sheet-width);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid rgba(79, 72, 62, 0.12);
  box-shadow: var(--shadow);
  padding: 24px 28px 32px;
  overflow: hidden;
}

.dispatch-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--effect-paper-grain);
  opacity: 0.34;
  pointer-events: none;
}

.masthead,
.section-nav,
.hero-panel,
.editorial-section,
.sheet-footer {
  border-bottom: 1px dotted var(--rule);
}

.masthead {
  display: grid;
  grid-template-columns: 92px 1fr 92px;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
}

.masthead-date,
.masthead-issue {
  display: grid;
  gap: 2px;
}

.masthead-issue {
  justify-items: end;
}

.masthead-day,
.masthead-year {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.masthead-month,
.masthead-code {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.masthead-title {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  line-height: 1;
  color: var(--ink);
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
  padding: 14px 0 18px;
}

.section-nav a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 140ms ease;
}

.section-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 140ms ease;
}

.section-nav a:hover,
.section-nav a:focus-visible {
  color: var(--ink);
}

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

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 28px;
  padding: 28px 0 36px;
  align-items: start;
  overflow: visible;
}

.section-kicker,
.card-index,
.brief-meta,
.rail-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

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

.hero-copy h1,
.section-intro h2,
.journey-section h2,
.practice-card h3,
.principle-card h3,
.direction-card h3,
.desktop-rail h2,
.brief-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
}

.hero-copy h1 {
  margin-top: 12px;
  max-width: 7.5ch;
  font-size: clamp(4.5rem, 10vw, 6.9rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: block;
}

.hero-deck,
.two-column-copy p,
.principle-card p,
.direction-card p,
.practice-card p,
.journey-copy,
.desktop-badge p,
.desktop-rail p,
.brief-card li,
.sheet-footer p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--ink-soft);
}

.hero-deck {
  max-width: 34rem;
  margin-top: 20px;
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button,
.rail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.button-primary,
.rail-button {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 8px 40px rgba(240, 88, 28, 0.18);
}

.button-secondary {
  border: 1px solid rgba(79, 72, 62, 0.18);
  background: rgba(255, 249, 241, 0.7);
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.rail-button:hover,
.rail-button:focus-visible {
  transform: translateY(-1px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(79, 72, 62, 0.3);
  background: var(--paper-bright);
}

.hero-art {
  position: relative;
  min-height: 610px;
  margin-left: -56px;
  overflow: visible;
  z-index: 2;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0 0 38px;
  pointer-events: none;
}

.hero-art::before {
  background:
    linear-gradient(180deg, rgba(255, 249, 241, 0.92) 0%, rgba(247, 238, 226, 0.95) 36%, rgba(224, 198, 162, 0.95) 100%);
  border: 1px solid rgba(79, 72, 62, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-art::after {
  background: var(--effect-paper-grain);
  opacity: 0.26;
}

.poster-haze,
.poster-sun,
.poster-cloud,
.poster-structure,
.poster-slope,
.editorial-device {
  position: absolute;
}

.poster-haze {
  inset: 10px 10px 48px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.54), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 42%);
  z-index: 1;
}

.poster-sun {
  top: 10%;
  right: 20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 214, 154, 0.86) 0%, rgba(247, 214, 154, 0.18) 56%, transparent 72%);
  filter: blur(1px);
  z-index: 1;
}

.poster-cloud {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 236, 224, 0.56));
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.24);
  opacity: 0.9;
  z-index: 2;
}

.poster-cloud-a {
  top: 15%;
  left: 10%;
  width: 140px;
  height: 46px;
}

.poster-cloud-b {
  top: 19%;
  left: 29%;
  width: 110px;
  height: 34px;
}

.poster-cloud-c {
  top: 24%;
  right: 8%;
  width: 92px;
  height: 28px;
}

.poster-structure {
  bottom: 30%;
  z-index: 3;
  background: linear-gradient(180deg, rgba(103, 119, 141, 0.88), rgba(87, 97, 114, 0.72));
  box-shadow: 0 0 0 1px rgba(79, 72, 62, 0.08);
}

.poster-structure::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px 999px 0 0;
  background: rgba(255, 249, 241, 0.54);
}

.poster-structure-a {
  left: 24%;
  width: 16px;
  height: 64px;
}

.poster-structure-a::before {
  top: -10px;
  width: 18px;
  height: 12px;
}

.poster-structure-b {
  right: 14%;
  width: 22px;
  height: 78px;
}

.poster-structure-b::before {
  top: -14px;
  width: 26px;
  height: 16px;
}

.poster-slope {
  inset-inline: 0;
  z-index: 2;
}

.poster-slope-far {
  bottom: 24%;
  left: -8%;
  right: 28%;
  height: 20%;
  border-radius: 52% 48% 0 0 / 100% 100% 0 0;
  background: linear-gradient(180deg, #efcd95 0%, #d7ab72 100%);
}

.poster-slope-mid {
  bottom: 10%;
  left: 14%;
  right: -12%;
  height: 26%;
  border-radius: 58% 42% 0 0 / 100% 100% 0 0;
  background: linear-gradient(180deg, #d9a06a 0%, var(--landscape-earth) 100%);
}

.poster-slope-near {
  bottom: -8%;
  left: -12%;
  right: -2%;
  height: 30%;
  border-radius: 64% 36% 0 0 / 100% 100% 0 0;
  background: linear-gradient(180deg, #a97d5a 0%, var(--landscape-shadow) 100%);
  z-index: 3;
}

.editorial-device {
  top: 11%;
  right: -8%;
  width: min(74%, 380px);
  aspect-ratio: 0.82;
  transform: rotate(5.5deg);
  z-index: 6;
}

.device-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 22px 20px 28px;
  border-radius: 34px 34px 28px 28px;
  background:
    linear-gradient(150deg, rgba(255, 249, 241, 0.98) 0%, rgba(245, 232, 216, 0.94) 62%, rgba(219, 202, 181, 0.96) 100%);
  border: 1px solid rgba(79, 72, 62, 0.16);
  box-shadow:
    0 34px 70px rgba(73, 58, 47, 0.18),
    0 10px 18px rgba(73, 58, 47, 0.08);
}

.device-shell::before {
  content: "";
  position: absolute;
  inset: -12px 14px 16px -18px;
  border-radius: 40px;
  border: 1px solid rgba(115, 91, 66, 0.24);
  opacity: 0.7;
}

.device-shell::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 18px;
  width: 72px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 119, 141, 0.2), rgba(103, 119, 141, 0.7));
}

.device-rim {
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  border: 1px solid rgba(79, 72, 62, 0.1);
}

.device-topbar {
  display: flex;
  gap: 8px;
  align-items: center;
}

.device-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(79, 72, 62, 0.32);
}

.device-topbar span:last-child {
  width: 34px;
  border-radius: 999px;
  background: rgba(103, 119, 141, 0.46);
}

.device-screen {
  position: absolute;
  inset: 48px 22px 28px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 20px 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(251, 246, 238, 0.96) 0%, rgba(243, 232, 219, 0.96) 100%);
  border: 1px solid rgba(79, 72, 62, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.device-meta,
.device-title {
  margin: 0;
}

.device-meta {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.device-title {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.94;
  color: var(--ink);
}

.device-plot {
  position: relative;
  height: 180px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(79, 72, 62, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 72, 62, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 228, 213, 0.84));
  background-size: 18px 18px, 18px 18px, auto;
  border: 1px solid rgba(79, 72, 62, 0.12);
  overflow: hidden;
}

.device-axis,
.device-curve,
.device-dot {
  position: absolute;
}

.device-axis {
  background: rgba(79, 72, 62, 0.2);
}

.device-axis-y {
  left: 16%;
  top: 12%;
  bottom: 16%;
  width: 1px;
}

.device-axis-x {
  left: 16%;
  right: 10%;
  bottom: 16%;
  height: 1px;
}

.device-curve {
  border-radius: 999px;
  border: 2px solid transparent;
}

.device-curve-a {
  left: 18%;
  top: 34%;
  width: 55%;
  height: 46%;
  border-top-color: rgba(103, 119, 141, 0.86);
  border-right-color: rgba(103, 119, 141, 0.86);
  transform: rotate(-8deg);
}

.device-curve-b {
  left: 28%;
  top: 18%;
  width: 40%;
  height: 52%;
  border-top-color: rgba(219, 106, 52, 0.88);
  border-left-color: rgba(219, 106, 52, 0.88);
  transform: rotate(12deg);
}

.device-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(246, 194, 162, 0.42);
}

.device-dot-a {
  top: 34%;
  left: 29%;
  background: var(--accent);
}

.device-dot-b {
  top: 48%;
  left: 50%;
  background: var(--navy);
}

.device-dot-c {
  top: 28%;
  right: 16%;
  background: #d3a66b;
}

.device-copy {
  display: grid;
  gap: 8px;
}

.device-copy span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(79, 72, 62, 0.16);
}

.device-copy span:nth-child(1) {
  width: 82%;
}

.device-copy span:nth-child(2) {
  width: 94%;
}

.device-copy span:nth-child(3) {
  width: 64%;
}

.device-bracket {
  position: absolute;
  bottom: 10%;
  width: 12px;
  height: 80px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(175, 129, 82, 0.82), rgba(120, 87, 57, 0.88));
  opacity: 0.82;
}

.device-bracket-left {
  left: -8px;
  transform: rotate(-12deg);
}

.device-bracket-right {
  right: -2px;
  transform: rotate(12deg);
}

.device-foot {
  position: absolute;
  right: 14%;
  bottom: -18px;
  width: 104px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(117, 96, 79, 0.92), rgba(83, 68, 57, 0.92));
  box-shadow: 0 14px 24px rgba(73, 58, 47, 0.18);
}

.brief-card {
  position: absolute;
  bottom: 14%;
  left: 27%;
  z-index: 7;
  width: min(38%, 186px);
  padding: 16px 16px 14px;
  background: var(--paper-bright);
  border: 1px solid rgba(79, 72, 62, 0.16);
  box-shadow: var(--shadow-soft);
  transform: rotate(-4deg);
}

.brief-card h2 {
  margin-top: 10px;
  font-size: 1.9rem;
  line-height: 0.98;
}

.brief-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.brief-card li {
  color: var(--ink);
}

.brief-footnote {
  margin-top: 12px;
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.editorial-section {
  padding: 28px 0 34px;
}

.section-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.section-intro h2,
.journey-section h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 0.96;
}

.two-column-copy,
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.principle-card,
.direction-card,
.practice-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(79, 72, 62, 0.12);
  border-radius: 24px 24px 18px 18px;
  box-shadow: 0 10px 20px rgba(73, 58, 47, 0.04);
}

.principle-card,
.practice-card {
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.94), rgba(249, 242, 233, 0.96));
}

.direction-card {
  background: linear-gradient(180deg, rgba(239, 228, 214, 0.96), rgba(233, 219, 201, 0.98));
}

.principle-card h3,
.direction-card h3,
.practice-card h3 {
  font-size: 2rem;
  line-height: 0.98;
}

.section-compact {
  padding-top: 22px;
}

.quote-strip {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
  padding-bottom: 26px;
  border-bottom: 1px dotted var(--rule);
}

.quote-mark {
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.8rem;
  line-height: 0.7;
  color: var(--accent);
}

.quote-strip blockquote {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
  color: var(--ink);
}

.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.signal-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(79, 72, 62, 0.12);
  background: rgba(255, 249, 241, 0.72);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.journey-section {
  display: grid;
  gap: 16px;
}

.journey-copy {
  max-width: 42rem;
  color: var(--ink);
}

.sheet-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  padding-top: 18px;
}

.sheet-footer p {
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.desktop-badge,
.desktop-rail {
  display: none;
}

.desktop-badge {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 20;
  width: 92px;
  gap: 12px;
}

.desktop-badge-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(79, 72, 62, 0.12);
  background: var(--paper-bright);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
}

.desktop-badge p {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.desktop-rail {
  position: fixed;
  right: 30px;
  z-index: 20;
  width: min(230px, 20vw);
}

.desktop-rail-top {
  top: 30px;
}

.desktop-rail-bottom {
  right: 36px;
  bottom: 40px;
  opacity: 0.72;
  transform: rotate(2deg);
}

.desktop-rail h2 {
  margin-top: 6px;
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  line-height: 0.96;
}

.desktop-rail p {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.rail-button {
  margin-top: 16px;
}

.button:focus-visible,
.section-nav a:focus-visible,
.rail-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (min-width: 1280px) {
  .dispatch-sheet {
    width: min(860px, calc(100vw - 420px));
  }

  .desktop-badge,
  .desktop-rail {
    display: block;
  }
}

@media (max-width: 1080px) {
  .dispatch-sheet {
    width: min(920px, calc(100vw - 56px));
  }

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

  .hero-art {
    min-height: 540px;
    margin-left: 0;
  }

  .editorial-device {
    right: 2%;
    width: min(66%, 360px);
  }

  .brief-card {
    bottom: 8%;
    left: 18%;
  }
}

@media (max-width: 860px) {
  .page-shell {
    padding: 18px 12px 96px;
  }

  .dispatch-sheet {
    width: min(920px, calc(100vw - 24px));
    padding: 18px 16px 24px;
  }

  .masthead {
    grid-template-columns: 68px 1fr 68px;
  }

  .masthead-day,
  .masthead-year {
    font-size: 1.6rem;
  }

  .section-intro h2,
  .journey-section h2 {
    max-width: none;
  }

  .principles-grid,
  .directions-grid,
  .two-column-copy,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 500px;
  }

  .editorial-device {
    top: 13%;
    right: 2%;
    width: min(72%, 340px);
  }

  .brief-card {
    width: min(48%, 206px);
    left: 14%;
  }
}

@media (max-width: 560px) {
  .section-nav {
    gap: 10px 14px;
    padding: 12px 0 16px;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
    max-width: none;
  }

  .hero-panel {
    gap: 20px;
    padding-bottom: 28px;
  }

  .hero-art {
    min-height: 430px;
  }

  .hero-art::before,
  .hero-art::after {
    inset: 0 0 28px;
  }

  .poster-sun {
    right: 8%;
    width: 132px;
    height: 132px;
  }

  .editorial-device {
    top: 16%;
    right: -2%;
    width: min(76%, 286px);
  }

  .device-screen {
    inset: 42px 18px 22px;
    padding: 18px 16px 14px;
  }

  .device-title {
    font-size: 1.7rem;
  }

  .device-plot {
    height: 136px;
  }

  .brief-card {
    left: 10%;
    bottom: 5%;
    width: min(58%, 202px);
    padding: 14px 14px 12px;
  }

  .brief-card h2 {
    font-size: 1.5rem;
  }

  .hero-deck,
  .two-column-copy p,
  .principle-card p,
  .direction-card p,
  .practice-card p,
  .journey-copy {
    font-size: 0.98rem;
  }

  .hero-art {
    min-height: 420px;
  }

  .brief-card {
    top: 18%;
    left: 10%;
    width: min(82%, 285px);
    transform: rotate(-4deg);
  }

  .brief-card h2,
  .principle-card h3,
  .direction-card h3,
  .practice-card h3 {
    font-size: 1.8rem;
  }

  .quote-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-mark {
    font-size: 3.6rem;
  }

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