:root {
  color-scheme: light;
  --ivory: #f3eee4;
  --ivory-soft: #faf7ee;
  --paper: #e9dfce;
  --charcoal: #171914;
  --graphite: #262a26;
  --slate: #566160;
  --muted: #67635a;
  --teal: #2f6f63;
  --teal-soft: #a9c2b8;
  --brass: #a88d54;
  --brass-soft: #d6c596;
  --line: rgba(168, 141, 84, 0.32);
  --line-teal: rgba(47, 111, 99, 0.36);
  --field: rgba(250, 247, 238, 0.82);
  --field-strong: rgba(250, 247, 238, 0.94);
  --shadow: 0 34px 90px rgba(23, 25, 20, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(168, 141, 84, 0.1), transparent 23rem),
    radial-gradient(circle at 82% 6%, rgba(47, 111, 99, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--ivory), #eee7da 62%, var(--ivory));
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23, 25, 20, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 25, 20, 0.022) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 72%);
  content: "";
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(47, 111, 99, 0.22);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.section-inner,
.header-inner,
.footer-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(168, 141, 84, 0.34);
  background: rgba(243, 238, 228, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 820;
}

.brand-mark,
.footer-mark {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--charcoal);
  background: var(--ivory-soft);
}

.brand-mark::before,
.brand-mark::after,
.footer-mark::before,
.footer-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before,
.footer-mark::before {
  inset: 6px;
  border: 1px solid var(--brass);
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), var(--teal) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(180deg, transparent calc(50% - 0.5px), var(--teal) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

.brand-mark::after,
.footer-mark::after {
  width: 6px;
  height: 6px;
  border: 1px solid var(--teal);
  background: var(--ivory-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  min-height: 38px;
  padding: 11px 12px;
  color: rgba(23, 25, 20, 0.72);
  font-size: 13px;
  font-weight: 760;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--brass), transparent);
  opacity: 0;
  content: "";
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--charcoal);
  background: rgba(250, 247, 238, 0.72);
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
}

.header-brief,
.button,
.disabled-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  padding: 0 20px;
  background: transparent;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-brief {
  min-height: 40px;
  padding: 0 16px;
}

.header-utility {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 141, 84, 0.32);
  padding: 0 10px;
  background: rgba(250, 247, 238, 0.36);
  color: rgba(23, 25, 20, 0.64);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.language-switch:hover,
.language-switch:focus-visible {
  border-color: rgba(47, 111, 99, 0.5);
  background: rgba(250, 247, 238, 0.78);
  color: var(--charcoal);
  outline: 2px solid rgba(47, 111, 99, 0.32);
  outline-offset: 2px;
}

.button-primary {
  background: var(--charcoal);
  color: var(--ivory-soft);
}

.button-secondary {
  background: rgba(250, 247, 238, 0.52);
}

.button-dark {
  border-color: var(--brass-soft);
  color: var(--ivory-soft);
}

.header-brief:hover,
.header-brief:focus-visible,
.button:hover,
.button:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--ivory-soft);
  outline: none;
  transform: translateY(-1px);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ivory-soft);
  color: var(--charcoal);
}

.eyebrow,
.panel-label,
.brief-label,
.footer-label,
.note-meta span,
.premise span,
.essay-steps span,
.operating-stack span,
.axiom-system span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #8c7548;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.panel-label::before,
.brief-label::before,
.footer-label::before {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 760;
  letter-spacing: 0;
}

p {
  margin: 0;
}

/* Home operating field */
.home-field {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-field::before,
.home-field::after,
.home-field-frame {
  position: absolute;
  pointer-events: none;
  content: "";
}

.home-field::before {
  top: 7%;
  bottom: 8%;
  left: 61%;
  z-index: 2;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(168, 141, 84, 0.52), rgba(47, 111, 99, 0.62), transparent);
}

.home-field::after {
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 12%;
  left: max(24px, calc((100% - var(--max)) / 2));
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 99, 0.45), rgba(168, 141, 84, 0.36), transparent);
}

.home-field-frame {
  inset: 8% -12% 5% 28%;
  z-index: 0;
  border: 1px solid rgba(47, 111, 99, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 48% 57%, transparent 0 54%, rgba(47, 111, 99, 0.06) 55%, transparent 56%),
    radial-gradient(ellipse at 48% 57%, transparent 0 70%, rgba(168, 141, 84, 0.055) 71%, transparent 72%);
}

.home-core-field {
  position: absolute;
  inset: 6% -7% 6% 22%;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0.94;
}

.home-core-field img {
  display: block;
  width: min(88vw, 1040px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 48px 96px rgba(23, 25, 20, 0.16));
}

.home-core-field::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--ivory) 0%, rgba(243, 238, 228, 0.82) 12%, transparent 28%, transparent 84%, rgba(243, 238, 228, 0.62) 100%),
    linear-gradient(180deg, var(--ivory) 0%, transparent 18%, transparent 86%, rgba(243, 238, 228, 0.8) 100%);
  content: "";
}

.home-field-inner {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.54fr) minmax(280px, 0.46fr);
  grid-template-rows: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 78px 0 78px;
}

.field-hero-panel {
  position: relative;
  max-width: 610px;
  border-top: 1px solid rgba(168, 141, 84, 0.34);
  border-bottom: 1px solid rgba(47, 111, 99, 0.26);
  border-left: 1px solid rgba(168, 141, 84, 0.42);
  padding: 36px 38px 38px;
  background:
    linear-gradient(90deg, rgba(250, 247, 238, 0.96), rgba(243, 238, 228, 0.9) 82%, rgba(243, 238, 228, 0.42));
  box-shadow: 0 28px 76px rgba(23, 25, 20, 0.08);
}

.field-hero-panel::before {
  position: absolute;
  top: 30px;
  bottom: 34px;
  left: -1px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--brass), var(--teal), transparent);
  content: "";
}

.field-hero-panel h1 {
  margin-top: 28px;
  font-size: 104px;
  line-height: 0.9;
}

.home-claim {
  max-width: 560px;
  margin-top: 30px;
  font-size: 44px;
  font-weight: 740;
  line-height: 1.06;
}

.home-copy {
  max-width: 610px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

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

.field-readout {
  align-self: end;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(168, 141, 84, 0.32);
  border-bottom: 1px solid rgba(47, 111, 99, 0.24);
  background: linear-gradient(90deg, rgba(250, 247, 238, 0.58), rgba(250, 247, 238, 0.18));
}

.field-readout span {
  min-height: 58px;
  border-right: 1px solid rgba(47, 111, 99, 0.2);
  padding: 20px 18px;
  color: rgba(23, 25, 20, 0.72);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.field-readout span:last-child {
  border-right: 0;
}

.field-descent {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 20px;
  z-index: 4;
  color: rgba(23, 25, 20, 0.68);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

/* Sections */
.section {
  position: relative;
  padding: 94px 0;
  border-bottom: 1px solid rgba(168, 141, 84, 0.2);
}

.section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--max));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 99, 0.44), rgba(168, 141, 84, 0.42), transparent);
  transform: translateX(-50%);
  content: "";
}

.section-rise {
  margin-top: -1px;
  padding-top: 110px;
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.2), rgba(250, 247, 238, 0.72)),
    radial-gradient(ellipse at 60% 0%, rgba(47, 111, 99, 0.09), transparent 32rem);
}

.section-axis-head {
  position: relative;
  max-width: 780px;
  padding-left: 28px;
}

.section-axis-head::before {
  position: absolute;
  top: 4px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--brass), var(--teal), transparent);
  content: "";
}

.section-axis-head h2 {
  margin-top: 18px;
  font-size: 46px;
  line-height: 1.05;
}

.section-axis-head p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-axis-head.narrow {
  max-width: 620px;
}

.operating-stack {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-teal);
  background: rgba(250, 247, 238, 0.5);
}

.operating-stack article {
  position: relative;
  min-height: 260px;
  border-right: 1px solid rgba(47, 111, 99, 0.22);
  padding: 34px;
}

.operating-stack article:last-child {
  border-right: 0;
}

.operating-stack article::after {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 111, 99, 0.48), rgba(168, 141, 84, 0.38), transparent);
  content: "";
}

.operating-stack h3,
.definition-panel h3,
.premise h2,
.flow-rail h3,
.essay-steps h3,
.note-card h2,
.brief-aside h2 {
  margin-top: 22px;
  font-size: 25px;
  line-height: 1.12;
}

.operating-stack p,
.definition-panel p,
.premise p,
.flow-rail p,
.essay-steps p,
.note-card p,
.brief-aside p,
.brief-form p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.section-dark {
  background:
    radial-gradient(ellipse at 70% 42%, rgba(47, 111, 99, 0.26), transparent 32rem),
    linear-gradient(135deg, #11140f, #1d211d 68%, #121510);
  color: var(--ivory-soft);
}

.dark-thesis {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: end;
}

.dark-thesis h2 {
  margin-top: 20px;
  max-width: 760px;
  font-size: 52px;
  line-height: 1.04;
}

.dark-thesis p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(250, 247, 238, 0.72);
  font-size: 19px;
  line-height: 1.68;
}

.dark-thesis .button {
  margin-top: 30px;
}

.boundary-section {
  position: relative;
}

.definition-grid {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.definition-panel,
.premise,
.note-card,
.brief-form {
  position: relative;
  border: 1px solid rgba(47, 111, 99, 0.34);
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.9), rgba(243, 238, 228, 0.78));
  box-shadow: 0 18px 60px rgba(23, 25, 20, 0.055);
}

.definition-panel {
  min-height: 300px;
  padding: 34px;
}

.definition-panel::before,
.premise::before,
.note-card::before,
.brief-form::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(168, 141, 84, 0.46);
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(47, 111, 99, 0.52) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(180deg, transparent calc(50% - 0.5px), rgba(47, 111, 99, 0.52) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  content: "";
}

.definition-not {
  background: linear-gradient(180deg, rgba(33, 36, 31, 0.96), rgba(23, 25, 20, 0.96));
  color: var(--ivory-soft);
}

.definition-not p {
  color: rgba(250, 247, 238, 0.68);
}

.section-flow {
  background: linear-gradient(180deg, transparent, rgba(250, 247, 238, 0.42));
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.72fr);
  gap: 72px;
}

.flow-grid h2 {
  margin-top: 20px;
  font-size: 44px;
  line-height: 1.06;
}

.flow-rail {
  position: relative;
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(47, 111, 99, 0.38);
}

.flow-rail article {
  position: relative;
  padding: 0 0 40px 36px;
  border-bottom: 1px solid rgba(168, 141, 84, 0.22);
}

.flow-rail article::before {
  position: absolute;
  top: 4px;
  left: -6px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--teal);
  background: var(--ivory);
  content: "";
}

.flow-rail article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.final-entry {
  padding-bottom: 118px;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 80px;
  align-items: center;
}

.final-grid h2 {
  margin-top: 18px;
  font-size: 42px;
  line-height: 1.08;
}

.final-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.final-grid .button {
  margin-top: 28px;
}

/* Thesis */
.thesis-field,
.canon-field,
.archive-field,
.brief-field {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.thesis-field {
  min-height: auto;
  padding: 94px 0 78px;
}

.monument-field {
  position: relative;
  align-self: center;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin: 0;
  justify-self: end;
  opacity: 0.78;
}

.monument-field::before,
.canon-seal::before,
.archive-system::before,
.brief-system::before {
  position: absolute;
  inset: -10%;
  border: 1px solid rgba(47, 111, 99, 0.18);
  border-radius: 50%;
  content: "";
}

.monument-field img,
.canon-seal img,
.archive-system img,
.brief-system img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 80px rgba(23, 25, 20, 0.14));
}

.thesis-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 54px 70px;
  align-items: center;
}

.thesis-opening {
  max-width: 760px;
  padding: 26px 0;
  background: transparent;
}

.thesis-opening h1,
.canon-opening h1,
.archive-copy h1,
.brief-opening h1 {
  margin-top: 24px;
  font-size: 72px;
  line-height: 0.98;
}

.thesis-opening p:not(.eyebrow),
.canon-opening p:not(.eyebrow),
.archive-copy p:not(.eyebrow),
.brief-opening p:not(.eyebrow) {
  margin-top: 24px;
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.manifesto-block {
  position: relative;
  grid-column: 1 / -1;
  max-width: 920px;
  margin: 0;
  border-top: 1px solid rgba(168, 141, 84, 0.46);
  border-bottom: 1px solid rgba(47, 111, 99, 0.34);
  padding: 30px 34px;
  background: rgba(250, 247, 238, 0.58);
}

.manifesto-block::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--brass), var(--teal), transparent);
  content: "";
}

.manifesto-block p {
  color: var(--graphite);
  font-size: 22px;
  font-weight: 620;
  line-height: 1.5;
}

.premise-section {
  padding-top: 72px;
}

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

.premise {
  min-height: 260px;
  padding: 32px;
}

.essay-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.44fr) minmax(0, 0.8fr);
  gap: 80px;
}

.essay-rail {
  position: sticky;
  top: 112px;
  align-self: start;
  border-top: 1px solid rgba(168, 141, 84, 0.42);
  padding-top: 28px;
}

.essay-rail h2 {
  margin-top: 18px;
  font-size: 42px;
  line-height: 1.08;
}

.essay-steps {
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(47, 111, 99, 0.4);
}

.essay-steps article {
  position: relative;
  padding: 0 0 46px 40px;
  border-bottom: 1px solid rgba(168, 141, 84, 0.22);
}

.essay-steps article::before {
  position: absolute;
  top: 3px;
  left: -7px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--teal);
  background: var(--ivory);
  content: "";
}

.essay-steps article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Canon */
.canon-field {
  min-height: auto;
  padding: 94px 0 68px;
}

.canon-opening {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(240px, 0.3fr);
  gap: 64px;
  align-items: center;
}

.canon-seal {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 330px);
  margin: 0;
  justify-self: end;
  opacity: 0.86;
}

.doctrine-stone {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.76fr);
  gap: 64px;
  align-items: center;
}

.stone-heading {
  position: relative;
  padding-left: 28px;
}

.stone-heading::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--brass), var(--teal), transparent);
  content: "";
}

.stone-heading h2 {
  margin-top: 18px;
  font-size: 48px;
  line-height: 1.04;
}

.stone-body {
  position: relative;
  border: 1px solid rgba(47, 111, 99, 0.38);
  padding: 42px 44px;
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.96), rgba(243, 238, 228, 0.82));
  box-shadow: var(--shadow);
}

.stone-body::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(168, 141, 84, 0.32);
  pointer-events: none;
  content: "";
}

.stone-body p {
  position: relative;
  color: var(--graphite);
  font-size: 22px;
  line-height: 1.58;
}

.axiom-system {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid rgba(47, 111, 99, 0.34);
}

.axiom-system article {
  position: relative;
  min-height: 210px;
  border-right: 1px solid rgba(168, 141, 84, 0.24);
  padding: 30px;
}

.axiom-system article:nth-child(1),
.axiom-system article:nth-child(2) {
  grid-column: span 3;
}

.axiom-system article:nth-child(n+3) {
  grid-column: span 2;
  border-top: 1px solid rgba(168, 141, 84, 0.24);
}

.axiom-system article:nth-child(2),
.axiom-system article:nth-child(5) {
  border-right: 0;
}

.axiom-system p {
  margin-top: 28px;
  color: var(--graphite);
  font-size: 21px;
  font-weight: 640;
  line-height: 1.34;
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 0.9fr);
  gap: 64px;
}

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

.concept-base article {
  border: 1px solid rgba(168, 141, 84, 0.3);
  background: rgba(250, 247, 238, 0.58);
  padding: 28px;
}

.concept-base article:first-child,
.concept-base article:last-child {
  grid-column: 1 / -1;
}

.concept-base h3 {
  font-size: 21px;
  line-height: 1.16;
}

.concept-base p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.boundary-list {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(47, 111, 99, 0.34);
  border-bottom: 1px solid rgba(168, 141, 84, 0.28);
}

.boundary-list p {
  min-height: 156px;
  border-right: 1px solid rgba(168, 141, 84, 0.22);
  padding: 26px;
  color: var(--graphite);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.34;
}

.boundary-list p:last-child {
  border-right: 0;
}

/* Notes */
.archive-field,
.brief-field {
  min-height: auto;
  padding: 86px 0 64px;
}

.archive-opening,
.brief-opening {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 56px;
  align-items: center;
}

.archive-system,
.brief-system {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 390px);
  margin: 0;
  justify-self: end;
}

.archive-system img,
.brief-system img {
  object-fit: contain;
}

.archive-index {
  padding-top: 70px;
}

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

.note-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 20px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.note-card:hover,
.note-card:focus-within {
  border-color: rgba(47, 111, 99, 0.64);
  box-shadow: 0 24px 70px rgba(23, 25, 20, 0.095);
  transform: translateY(-3px);
}

.note-cover {
  position: relative;
  aspect-ratio: 0.95;
  margin: 0 0 26px;
  overflow: hidden;
  border: 1px solid rgba(168, 141, 84, 0.28);
  background: var(--paper);
}

.note-cover::before,
.note-cover::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.note-cover::before {
  inset: 16px;
  border: 1px solid rgba(250, 247, 238, 0.54);
}

.note-cover::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(168, 141, 84, 0.5), rgba(47, 111, 99, 0.38), transparent);
}

.note-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.note-tool .note-cover img {
  object-position: 21% 52%;
  transform: scale(1.34) translateX(7%);
}

.note-layer .note-cover img {
  object-position: 50% 42%;
  transform: scale(1.08);
}

.note-ring .note-cover img {
  object-position: 78% 58%;
  transform: scale(1.32) translateX(-7%);
}

.note-tool .note-cover {
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.note-layer .note-cover::before {
  inset: 28px 14px;
}

.note-ring .note-cover {
  border-radius: 50% 50% 4px 4px / 36% 36% 4px 4px;
}

.note-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brass);
  opacity: 0.78;
}

.note-card h2 {
  margin-top: auto;
}

/* Private brief */
.brief-field {
  padding-top: 78px;
}

.brief-opening h1 {
  max-width: 660px;
  font-size: 48px;
  line-height: 1.08;
}

.brief-system {
  width: min(100%, 340px);
  opacity: 0.7;
}

.brief-entry-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 0.84fr);
  gap: 34px;
  align-items: stretch;
}

.brief-aside {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 12%, rgba(47, 111, 99, 0.22), transparent 22rem),
    linear-gradient(145deg, #11140f, #1b211c 70%, #10120f);
  color: var(--ivory-soft);
  padding: 42px;
}

.brief-aside::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(168, 141, 84, 0.28);
  pointer-events: none;
  content: "";
}

.brief-aside > * {
  position: relative;
}

.brief-label {
  color: var(--brass-soft);
}

.brief-aside h2 {
  max-width: 430px;
  color: var(--ivory-soft);
  font-size: 34px;
}

.brief-aside p {
  color: rgba(250, 247, 238, 0.68);
}

.brief-lists {
  display: grid;
  margin-top: 34px;
  gap: 28px;
}

.brief-lists h3 {
  color: var(--brass-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.brief-lists ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.brief-lists li {
  position: relative;
  padding: 9px 0 9px 18px;
  color: rgba(250, 247, 238, 0.7);
  font-size: 15px;
  line-height: 1.42;
}

.brief-lists li::before {
  position: absolute;
  top: 16px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--brass-soft);
  content: "";
}

.brief-form {
  padding: 34px;
}

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

.field {
  display: grid;
  gap: 9px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 760;
}

.field span {
  color: var(--muted);
  font-weight: 520;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(168, 141, 84, 0.42);
  background: rgba(243, 238, 228, 0.56);
  color: var(--charcoal);
  outline: none;
}

.field input {
  min-height: 46px;
  padding: 0 12px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
  padding: 12px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 111, 99, 0.12);
}

.full-field {
  margin-top: 20px;
}

.form-footer {
  display: flex;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(168, 141, 84, 0.28);
  padding-top: 20px;
}

.form-footer p {
  margin: 0;
  font-size: 13px;
}

.disabled-button {
  border-color: rgba(23, 25, 20, 0.34);
  color: rgba(23, 25, 20, 0.52);
  cursor: not-allowed;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 60px 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(47, 111, 99, 0.12), transparent 24rem),
    #151712;
  color: var(--ivory-soft);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--max));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), var(--teal), transparent);
  transform: translateX(-50%);
  content: "";
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 46px;
  align-items: center;
}

.footer-title {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(250, 247, 238, 0.82);
  font-size: 24px;
  font-weight: 680;
  line-height: 1.22;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-links a {
  color: rgba(250, 247, 238, 0.72);
  font-size: 13px;
  font-weight: 760;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brass-soft);
  outline: none;
}

.footer-mark {
  border-color: rgba(250, 247, 238, 0.8);
  background: transparent;
}

/* Responsive */
@media (max-width: 1040px) {
  .field-hero-panel h1 {
    font-size: 82px;
  }

  .home-claim {
    font-size: 36px;
  }

  .home-core-field {
    inset: 10% -22% 9% 18%;
  }

  .thesis-opening h1,
  .canon-opening h1,
  .archive-copy h1 {
    font-size: 60px;
  }

  .brief-opening h1 {
    font-size: 42px;
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    gap: 2px 4px;
    border-top: 1px solid rgba(168, 141, 84, 0.22);
    padding-top: 8px;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 9px 9px;
    white-space: nowrap;
  }

  .header-brief {
    display: none;
  }

  .header-utility {
    margin-left: auto;
  }

  .home-field {
    min-height: 860px;
  }

  .home-field::before {
    left: 50%;
    top: 45%;
    bottom: 7%;
  }

  .home-field-frame {
    inset: 45% -20% 7%;
  }

  .home-core-field {
    position: absolute;
    inset: 34% -22% 10% -6%;
    width: auto;
    margin: 0;
    padding: 0;
    opacity: 0.78;
  }

  .home-core-field img {
    width: min(112vw, 640px);
  }

  .home-field-inner {
    display: grid;
    min-height: 860px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 48px 0 34px;
  }

  .field-hero-panel {
    max-width: none;
    padding: 26px 26px 28px;
    background: rgba(250, 247, 238, 0.92);
  }

  .field-hero-panel::before {
    display: block;
  }

  .field-hero-panel h1 {
    font-size: 64px;
  }

  .home-claim {
    max-width: 520px;
    font-size: 32px;
  }

  .home-copy {
    max-width: 560px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .field-readout {
    margin-top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: rgba(250, 247, 238, 0.74);
  }

  .field-readout span:nth-child(2) {
    border-right: 0;
  }

  .field-readout span:nth-child(n+3) {
    border-top: 1px solid rgba(47, 111, 99, 0.18);
  }

  .field-descent {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .section-axis-head h2,
  .dark-thesis h2,
  .flow-grid h2,
  .final-grid h2,
  .essay-rail h2,
  .stone-heading h2 {
    font-size: 36px;
  }

  .operating-stack,
  .definition-grid,
  .dark-thesis,
  .flow-grid,
  .final-grid,
  .premise-grid,
  .essay-layout,
  .canon-opening,
  .doctrine-stone,
  .concept-layout,
  .archive-opening,
  .brief-opening,
  .brief-entry-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .operating-stack article,
  .operating-stack article:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 111, 99, 0.22);
  }

  .operating-stack article:last-child {
    border-bottom: 0;
  }

  .thesis-field,
  .canon-field,
  .archive-field,
  .brief-field {
    min-height: auto;
    padding: 72px 0 58px;
  }

  .monument-field {
    position: relative;
    inset: auto;
    width: min(100%, 390px);
    height: auto;
    margin: 0 auto;
    justify-self: center;
  }

  .thesis-opening-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .thesis-opening {
    padding-right: 0;
    background: transparent;
  }

  .thesis-opening h1,
  .canon-opening h1,
  .archive-copy h1,
  .brief-opening h1 {
    font-size: 48px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .manifesto-block p,
  .stone-body p {
    font-size: 19px;
  }

  .essay-rail {
    position: relative;
    top: auto;
  }

  .canon-seal,
  .archive-system,
  .brief-system {
    width: min(100%, 340px);
    justify-self: center;
  }

  .archive-field {
    padding-bottom: 42px;
  }

  .archive-opening {
    gap: 30px;
  }

  .archive-system {
    width: min(100%, 300px);
  }

  .archive-index {
    padding-top: 58px;
  }

  .brief-field {
    padding-top: 64px;
    padding-bottom: 44px;
  }

  .brief-opening {
    gap: 28px;
  }

  .brief-system {
    width: min(100%, 280px);
  }

  .axiom-system {
    grid-template-columns: 1fr;
  }

  .axiom-system article,
  .axiom-system article:nth-child(1),
  .axiom-system article:nth-child(2),
  .axiom-system article:nth-child(n+3) {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
    border-top: 1px solid rgba(168, 141, 84, 0.24);
  }

  .axiom-system article:first-child {
    border-top: 0;
  }

  .concept-base,
  .note-grid,
  .boundary-list {
    grid-template-columns: 1fr;
  }

  .boundary-list p {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(168, 141, 84, 0.22);
  }

  .brief-aside,
  .brief-form,
  .stone-body {
    padding: 30px;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section-inner,
  .header-inner,
  .footer-inner,
  .home-field-inner {
    width: calc(100vw - 32px);
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
  }

  .field-hero-panel h1 {
    font-size: 52px;
  }

  .home-field {
    min-height: 820px;
  }

  .home-field-inner {
    min-height: 820px;
    padding-top: 38px;
  }

  .home-core-field {
    inset: 42% -44% 11% -34%;
    opacity: 0.74;
  }

  .home-claim {
    font-size: 26px;
  }

  .home-copy,
  .section-axis-head p:not(.eyebrow),
  .thesis-opening p:not(.eyebrow),
  .canon-opening p:not(.eyebrow),
  .archive-copy p:not(.eyebrow),
  .brief-opening p:not(.eyebrow),
  .final-grid p {
    font-size: 16px;
    line-height: 1.62;
  }

  .field-readout {
    grid-template-columns: 1fr;
  }

  .field-readout span {
    border-right: 0;
    border-top: 1px solid rgba(47, 111, 99, 0.18);
  }

  .field-readout span:first-child {
    border-top: 0;
  }

  .home-core-field img {
    width: min(122vw, 520px);
  }

  .section-axis-head,
  .stone-heading {
    padding-left: 18px;
  }

  .section-axis-head h2,
  .dark-thesis h2,
  .flow-grid h2,
  .final-grid h2,
  .essay-rail h2,
  .stone-heading h2 {
    font-size: 31px;
  }

  .thesis-opening h1,
  .canon-opening h1,
  .archive-copy h1,
  .brief-opening h1 {
    font-size: 38px;
  }

  .brief-opening h1 {
    font-size: 34px;
  }

  .monument-field {
    width: min(100%, 310px);
  }

  .canon-seal,
  .archive-system,
  .brief-system {
    width: min(100%, 300px);
  }

  .archive-field {
    padding-top: 56px;
    padding-bottom: 30px;
  }

  .archive-system {
    width: min(100%, 240px);
  }

  .archive-index {
    padding-top: 48px;
  }

  .brief-field {
    padding-top: 52px;
  }

  .brief-system {
    width: min(100%, 230px);
  }

  .operating-stack article,
  .definition-panel,
  .premise,
  .note-card,
  .brief-aside,
  .brief-form,
  .stone-body,
  .concept-base article {
    padding: 24px;
  }

  .note-card {
    min-height: 0;
  }

  .note-cover {
    aspect-ratio: 1.28;
  }

  .brief-aside h2 {
    font-size: 26px;
  }
}

.home-field {
  min-height: auto;
  padding: 96px 0 92px;
  background:
    radial-gradient(ellipse at 78% 48%, rgba(47, 111, 99, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(250, 247, 238, 0.28), rgba(243, 238, 228, 0.8));
}

.home-field::before,
.home-field::after {
  display: none;
}

.home-field-inner {
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: auto;
  grid-template-columns: minmax(0, 0.56fr) minmax(360px, 0.44fr);
  grid-template-rows: auto;
  gap: 72px;
  align-items: center;
  padding: 0;
}

.field-hero-panel {
  max-width: 660px;
  border: 0;
  border-top: 1px solid rgba(168, 141, 84, 0.4);
  border-bottom: 1px solid rgba(47, 111, 99, 0.28);
  border-left: 1px solid rgba(168, 141, 84, 0.42);
  padding: 38px 0 40px 32px;
  background: transparent;
  box-shadow: none;
}

.field-hero-panel::before {
  left: -1px;
}

.field-hero-panel h1 {
  font-size: clamp(78px, 8vw, 96px);
  line-height: 0.92;
}

.home-claim {
  max-width: 620px;
  font-size: clamp(34px, 3.7vw, 44px);
}

.home-copy {
  max-width: 640px;
}

.art-plate {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.art-plate::before {
  display: none;
}

.art-plate::after {
  display: none;
}

.art-plate img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 58px rgba(23, 25, 20, 0.1));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 26%, #000 74%, rgba(0, 0, 0, 0.2) 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 25%, #000 76%, rgba(0, 0, 0, 0.22) 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 26%, #000 74%, rgba(0, 0, 0, 0.2) 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 25%, #000 76%, rgba(0, 0, 0, 0.22) 90%, transparent 100%);
  mask-composite: intersect;
}

.hero-art {
  width: min(100%, 570px);
  justify-self: end;
  aspect-ratio: 0.94;
  padding: 0;
}

.hero-art img {
  object-fit: contain;
}

.section-rise {
  padding-top: 86px;
}

.operating-stack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(250, 247, 238, 0.56);
}

.operating-stack article {
  min-height: 220px;
}

.thesis-field,
.canon-field,
.archive-field,
.brief-field {
  background:
    radial-gradient(ellipse at 82% 42%, rgba(47, 111, 99, 0.07), transparent 30rem),
    linear-gradient(180deg, rgba(250, 247, 238, 0.14), rgba(243, 238, 228, 0.44));
}

.thesis-opening-grid,
.canon-opening,
.archive-opening,
.brief-opening {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 72px;
}

.thesis-opening h1,
.canon-opening h1,
.archive-copy h1 {
  font-size: clamp(64px, 6.4vw, 82px);
  line-height: 0.98;
}

.brief-opening h1 {
  font-size: clamp(46px, 4.4vw, 58px);
  line-height: 1.08;
}

.monument-field,
.canon-seal,
.archive-system,
.brief-system {
  width: min(100%, 430px);
  aspect-ratio: 1;
  justify-self: end;
  padding: 0;
  opacity: 1;
}

.canon-seal,
.brief-system {
  width: min(100%, 360px);
}

.archive-system {
  width: min(100%, 390px);
}

.monument-field img,
.canon-seal img,
.archive-system img,
.brief-system img {
  filter: drop-shadow(0 22px 56px rgba(23, 25, 20, 0.1));
}

.manifesto-section {
  padding: 70px 0;
  background: rgba(250, 247, 238, 0.34);
}

.manifesto-block {
  max-width: 940px;
  padding: 34px 38px;
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.82), rgba(243, 238, 228, 0.62));
}

.manifesto-block p {
  max-width: 860px;
  font-size: clamp(20px, 2.1vw, 26px);
}

.premise-section {
  padding-top: 78px;
}

.essay-layout {
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
  gap: 76px;
}

.essay-steps {
  max-width: 780px;
}

.archive-field,
.brief-field {
  padding: 82px 0 58px;
}

.archive-index {
  padding-top: 66px;
}

.note-card {
  min-height: 450px;
}

.note-cover {
  aspect-ratio: 1.08;
}

.note-cover::before {
  background:
    linear-gradient(90deg, rgba(250, 247, 238, 0.86), transparent 20%, transparent 80%, rgba(250, 247, 238, 0.86)),
    linear-gradient(180deg, rgba(250, 247, 238, 0.78), transparent 18%, transparent 84%, rgba(250, 247, 238, 0.82));
}

.brief-entry-section {
  padding-top: 80px;
}

.brief-aside h2 {
  font-size: clamp(28px, 3vw, 36px);
}

.site-footer {
  padding: 58px 0;
}

.footer-inner {
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 28px;
}

.footer-title {
  max-width: 620px;
}

.footer-brief {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(214, 197, 150, 0.58);
  padding: 0 16px;
  color: var(--ivory-soft);
  font-size: 13px;
  font-weight: 820;
}

.footer-brief:hover,
.footer-brief:focus-visible {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
  outline: none;
}

@media (max-width: 1040px) {
  .home-field-inner,
  .thesis-opening-grid,
  .canon-opening,
  .archive-opening,
  .brief-opening {
    gap: 48px;
  }

  .operating-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .home-field {
    min-height: auto;
    padding: 58px 0 64px;
  }

  .home-field-inner,
  .thesis-opening-grid,
  .canon-opening,
  .archive-opening,
  .brief-opening,
  .footer-inner {
    display: grid;
    width: min(calc(100% - 32px), var(--max));
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0;
  }

  .field-hero-panel {
    padding: 28px 0 30px 22px;
    background: transparent;
  }

  .field-hero-panel h1 {
    font-size: clamp(50px, 15vw, 58px);
  }

  .home-claim {
    font-size: clamp(27px, 8vw, 34px);
  }

  .hero-art,
  .monument-field,
  .canon-seal,
  .archive-system,
  .brief-system {
    width: min(100%, 350px);
    justify-self: center;
    padding: 0;
  }

  .hero-art {
    width: min(100%, 370px);
  }

  .thesis-field,
  .canon-field,
  .archive-field,
  .brief-field {
    padding: 62px 0 52px;
  }

  .thesis-opening h1,
  .canon-opening h1,
  .archive-copy h1 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .brief-opening h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .manifesto-section,
  .premise-section,
  .archive-index,
  .brief-entry-section {
    padding-top: 58px;
  }

  .operating-stack,
  .premise-grid,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .operating-stack article {
    min-height: auto;
  }

  .footer-brief {
    width: max-content;
  }
}

@media (max-width: 560px) {
  .site-nav {
    flex-wrap: wrap;
    overflow: visible;
  }

  .site-nav a {
    min-height: 32px;
    padding: 8px 7px;
    font-size: 12px;
    white-space: nowrap;
  }

  .home-field,
  .thesis-field,
  .canon-field,
  .archive-field,
  .brief-field {
    padding-top: 48px;
  }

  .art-plate::after {
    display: none;
  }

  .hero-art,
  .monument-field,
  .canon-seal,
  .archive-system,
  .brief-system {
    width: min(100%, 320px);
  }

  .field-hero-panel {
    padding-left: 18px;
  }

  .field-hero-panel h1 {
    font-size: 52px;
  }

  .home-copy,
  .thesis-opening p:not(.eyebrow),
  .canon-opening p:not(.eyebrow),
  .archive-copy p:not(.eyebrow),
  .brief-opening p:not(.eyebrow) {
    max-width: 100%;
  }

  .manifesto-block,
  .stone-body,
  .brief-aside,
  .brief-form {
    padding: 26px;
  }

  .note-card {
    min-height: 0;
  }
}

.home-field {
  position: relative;
  min-height: calc(100vh - 78px);
  padding: 78px 0 82px;
  background:
    radial-gradient(ellipse at 78% 47%, rgba(47, 111, 99, 0.1), transparent 38rem),
    radial-gradient(ellipse at 22% 52%, rgba(168, 141, 84, 0.1), transparent 34rem),
    linear-gradient(180deg, rgba(250, 247, 238, 0.24), rgba(243, 238, 228, 0.82));
}

.home-field-inner {
  position: relative;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.51fr) minmax(420px, 0.49fr);
  gap: 34px;
}

.home-field-inner::after {
  position: absolute;
  top: 2%;
  right: -7%;
  bottom: 2%;
  z-index: 0;
  width: 64%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 54% 52%, rgba(47, 111, 99, 0.13), rgba(168, 141, 84, 0.07) 36%, transparent 72%);
  opacity: 0.7;
  content: "";
}

.field-hero-panel {
  z-index: 2;
  max-width: 600px;
  padding: 32px 0 34px 28px;
  background:
    linear-gradient(90deg, rgba(250, 247, 238, 0.78), rgba(250, 247, 238, 0.42) 74%, transparent);
}

.field-hero-panel h1 {
  margin-top: 38px;
  font-size: clamp(64px, 6.4vw, 82px);
  font-weight: 790;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-claim {
  max-width: 560px;
  font-size: clamp(30px, 3.05vw, 38px);
  line-height: 1.13;
}

.home-copy {
  max-width: 600px;
  font-size: 19px;
  line-height: 1.72;
}

.hero-art {
  z-index: 1;
  width: min(100%, 660px);
  margin-left: -40px;
  opacity: 0.96;
}

.art-plate img {
  filter: drop-shadow(0 28px 62px rgba(23, 25, 20, 0.105));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, #000 24%, #000 76%, rgba(0, 0, 0, 0.16) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, #000 24%, #000 76%, rgba(0, 0, 0, 0.16) 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, #000 24%, #000 76%, rgba(0, 0, 0, 0.16) 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 8%, #000 24%, #000 76%, rgba(0, 0, 0, 0.16) 92%, transparent 100%);
  mask-composite: intersect;
}

.thesis-field {
  padding: 86px 0 70px;
}

.thesis-opening-grid {
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  gap: 56px;
}

.thesis-opening h1 {
  max-width: 770px;
  font-size: clamp(52px, 5.2vw, 68px);
  font-weight: 760;
  line-height: 1.04;
}

.thesis-opening p:not(.eyebrow) {
  max-width: 690px;
}

.monument-field {
  width: min(100%, 380px);
  opacity: 0.88;
}

.manifesto-block {
  border-left: 2px solid rgba(168, 141, 84, 0.62);
}

.canon-field {
  position: relative;
  overflow: hidden;
  padding: 78px 0 48px;
  background:
    linear-gradient(90deg, rgba(47, 111, 99, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(168, 141, 84, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 247, 238, 0.28), rgba(243, 238, 228, 0.5));
  background-size: 116px 116px, 116px 116px, auto;
}

.canon-field::after {
  position: absolute;
  top: 18%;
  right: 9%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(47, 111, 99, 0.13);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.canon-opening {
  display: block;
  max-width: 850px;
}

.canon-opening h1 {
  max-width: 760px;
  font-size: clamp(48px, 4.5vw, 62px);
  font-weight: 760;
  line-height: 1.06;
}

.canon-opening p:not(.eyebrow) {
  max-width: 680px;
}

.canon-seal,
.archive-system {
  display: none !important;
}

.doctrine-stone {
  position: relative;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 54px;
  align-items: stretch;
  border-top: 1px solid rgba(168, 141, 84, 0.34);
  border-bottom: 1px solid rgba(47, 111, 99, 0.24);
  padding: 34px 0;
}

.stone-body {
  border-color: rgba(23, 25, 20, 0.18);
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.82), rgba(250, 247, 238, 0.54));
}

.axiom-system article {
  min-height: 178px;
  padding: 28px;
}

.axiom-system p {
  font-size: 19px;
  line-height: 1.38;
}

.concept-base {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-base article:first-child,
.concept-base article:last-child {
  grid-column: auto;
}

.boundary-list {
  background: rgba(250, 247, 238, 0.42);
}

.boundary-list p {
  min-height: 132px;
  font-size: 16px;
}

.archive-field {
  position: relative;
  overflow: hidden;
  padding: 72px 0 38px;
  background:
    linear-gradient(90deg, rgba(47, 111, 99, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(168, 141, 84, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 247, 238, 0.24), rgba(243, 238, 228, 0.42));
  background-size: 92px 92px, 92px 92px, auto;
}

.archive-field::after {
  position: absolute;
  right: 7%;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(168, 141, 84, 0.13);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.archive-opening {
  display: block;
  max-width: 820px;
}

.archive-copy h1 {
  max-width: 690px;
  font-size: clamp(44px, 4vw, 56px);
  font-weight: 740;
  line-height: 1.08;
}

.archive-copy p:not(.eyebrow) {
  max-width: 670px;
}

.archive-index {
  padding-top: 44px;
}

.note-grid {
  margin-top: 38px;
}

.note-card {
  display: grid;
  min-height: 314px;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.74), rgba(250, 247, 238, 0.46)),
    linear-gradient(90deg, rgba(47, 111, 99, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(168, 141, 84, 0.055) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.note-card::before {
  top: 26px;
  right: 26px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(47, 111, 99, 0.48);
  background:
    linear-gradient(90deg, transparent 48%, rgba(47, 111, 99, 0.3) 49%, rgba(47, 111, 99, 0.3) 51%, transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(168, 141, 84, 0.34) 49%, rgba(168, 141, 84, 0.34) 51%, transparent 52%);
  opacity: 0.72;
}

.note-card::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 141, 84, 0.08), rgba(47, 111, 99, 0.5));
  content: "";
}

.note-layer::before {
  transform: rotate(45deg);
}

.note-ring::before {
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(47, 111, 99, 0.07);
}

.note-cover {
  display: none !important;
}

.archive-card-top,
.note-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(23, 25, 20, 0.56);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.archive-card-top span:last-child,
.note-meta span:first-child {
  color: rgba(168, 141, 84, 0.78);
}

.archive-issue {
  margin-top: 34px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.note-card h2 {
  margin-top: 24px;
  max-width: 92%;
  font-size: 24px;
  line-height: 1.15;
}

.note-card p:not(.archive-issue):not(.archive-card-footer) {
  margin-top: 18px;
  color: rgba(103, 99, 90, 0.92);
  font-size: 15.5px;
  line-height: 1.62;
}

.archive-card-footer {
  margin-top: 26px;
  border-top: 1px solid rgba(168, 141, 84, 0.24);
  padding-top: 14px;
  color: rgba(23, 25, 20, 0.48);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.brief-field {
  padding: 68px 0 46px;
}

.brief-opening {
  grid-template-columns: minmax(0, 0.66fr) minmax(260px, 0.34fr);
  gap: 44px;
}

.brief-opening h1 {
  max-width: 700px;
  font-size: clamp(42px, 3.8vw, 52px);
  font-weight: 730;
  line-height: 1.1;
}

.brief-opening p:not(.eyebrow) {
  max-width: 650px;
}

.brief-system {
  width: min(100%, 300px);
  opacity: 0.46;
}

.brief-system img {
  filter: grayscale(0.12) opacity(0.78) drop-shadow(0 18px 48px rgba(23, 25, 20, 0.06));
}

.brief-aside {
  background:
    linear-gradient(180deg, rgba(23, 25, 20, 0.98), rgba(31, 34, 29, 0.96));
}

.brief-aside h2 {
  max-width: 560px;
  font-size: clamp(25px, 2.3vw, 31px);
  line-height: 1.16;
}

.brief-form {
  background: rgba(250, 247, 238, 0.76);
}

.site-nav a[aria-current="page"] {
  background: rgba(250, 247, 238, 0.6);
}

.button:hover,
.button:focus-visible {
  background: #285f56;
}

@media (max-width: 1040px) {
  .home-field-inner {
    grid-template-columns: minmax(0, 0.52fr) minmax(340px, 0.48fr);
    gap: 28px;
  }

  .field-hero-panel h1 {
    font-size: clamp(58px, 7vw, 74px);
  }

  .home-claim {
    font-size: clamp(28px, 3.5vw, 34px);
  }

  .concept-base {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .home-field {
    min-height: auto;
    padding: 54px 0 64px;
  }

  .home-field-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-field-inner::after {
    top: auto;
    right: -18%;
    bottom: 2%;
    width: 92%;
    height: 52%;
    opacity: 0.36;
  }

  .field-hero-panel {
    max-width: 620px;
    padding: 26px 0 28px 20px;
  }

  .field-hero-panel h1 {
    margin-top: 30px;
    font-size: clamp(48px, 13vw, 56px);
  }

  .home-claim {
    max-width: 500px;
    font-size: clamp(27px, 7vw, 32px);
  }

  .home-copy {
    font-size: 17px;
  }

  .hero-art {
    width: min(100%, 390px);
    margin: -10px auto 0;
    justify-self: center;
  }

  .thesis-field,
  .canon-field,
  .archive-field,
  .brief-field {
    padding-top: 52px;
    padding-bottom: 42px;
  }

  .thesis-opening-grid,
  .brief-opening {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .thesis-opening h1 {
    font-size: clamp(40px, 9.5vw, 48px);
  }

  .canon-opening h1,
  .archive-copy h1 {
    font-size: clamp(37px, 9vw, 45px);
  }

  .brief-opening h1 {
    font-size: clamp(34px, 8.4vw, 42px);
  }

  .monument-field {
    display: none;
  }

  .brief-system {
    width: min(100%, 230px);
    justify-self: start;
    opacity: 0.34;
  }

  .doctrine-stone,
  .concept-base {
    grid-template-columns: 1fr;
  }

  .doctrine-stone {
    gap: 26px;
  }

  .note-grid {
    gap: 14px;
  }

  .note-card {
    min-height: 0;
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    row-gap: 10px;
  }

  .header-brief {
    display: none;
  }

  .header-utility {
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 3px;
  }

  .site-nav a {
    min-height: 31px;
    padding: 8px 5px;
    font-size: 11.5px;
  }

  .field-hero-panel {
    padding-left: 16px;
  }

  .field-hero-panel h1 {
    font-size: 48px;
  }

  .home-claim {
    font-size: 27px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-art {
    width: min(100%, 330px);
  }

  .thesis-opening h1 {
    font-size: 38px;
  }

  .canon-opening h1,
  .archive-copy h1,
  .brief-opening h1 {
    font-size: 36px;
  }

  .archive-index {
    padding-top: 34px;
  }

  .archive-card-top {
    padding-right: 34px;
  }

  .note-card h2 {
    font-size: 23px;
  }

  .brief-lists {
    grid-template-columns: 1fr;
  }
}

.hero-art img,
.monument-field img,
.brief-system img {
  mix-blend-mode: multiply;
}

.hero-art img {
  opacity: 0.94;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 9%, rgba(0, 0, 0, 0.72) 24%, #000 34%, #000 66%, rgba(0, 0, 0, 0.72) 76%, rgba(0, 0, 0, 0.04) 91%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.04) 9%, rgba(0, 0, 0, 0.72) 24%, #000 34%, #000 68%, rgba(0, 0, 0, 0.7) 78%, rgba(0, 0, 0, 0.04) 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 9%, rgba(0, 0, 0, 0.72) 24%, #000 34%, #000 66%, rgba(0, 0, 0, 0.72) 76%, rgba(0, 0, 0, 0.04) 91%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.04) 9%, rgba(0, 0, 0, 0.72) 24%, #000 34%, #000 68%, rgba(0, 0, 0, 0.7) 78%, rgba(0, 0, 0, 0.04) 91%, transparent 100%);
  mask-composite: intersect;
}

.monument-field img {
  opacity: 0.82;
  mix-blend-mode: normal;
  filter: contrast(0.98) saturate(0.9) drop-shadow(0 24px 58px rgba(23, 25, 20, 0.08));
  -webkit-mask-image: radial-gradient(ellipse at 50% 55%, black 0%, black 60%, rgba(0, 0, 0, 0.62) 78%, transparent 96%) !important;
  -webkit-mask-composite: initial !important;
  mask-image: radial-gradient(ellipse at 50% 55%, black 0%, black 60%, rgba(0, 0, 0, 0.62) 78%, transparent 96%) !important;
  mask-composite: initial !important;
}

.brief-system img {
  opacity: 0.72;
}

.brief-opening h1 {
  font-size: clamp(40px, 3.45vw, 48px);
}

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

.hero-art {
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-art img {
  filter: contrast(1.03) saturate(0.86) drop-shadow(0 28px 62px rgba(23, 25, 20, 0.085));
  -webkit-mask-image: radial-gradient(ellipse at 54% 53%, black 0%, black 48%, rgba(0, 0, 0, 0.62) 64%, transparent 82%) !important;
  -webkit-mask-composite: initial !important;
  mask-image: radial-gradient(ellipse at 54% 53%, black 0%, black 48%, rgba(0, 0, 0, 0.62) 64%, transparent 82%) !important;
  mask-composite: initial !important;
}

@media (max-width: 560px) {
  .site-shell,
  .site-header,
  main,
  section {
    max-width: 100vw;
  }

  .section-inner,
  .header-inner,
  .footer-inner,
  .home-field-inner,
  .thesis-opening-grid,
  .canon-opening,
  .archive-opening,
  .brief-opening {
    width: min(calc(100vw - 32px), var(--max)) !important;
    max-width: calc(100vw - 32px);
  }

  .header-inner {
    justify-content: flex-start;
  }

  .header-utility {
    margin-left: auto;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    align-items: stretch;
    gap: 3px;
  }

  .site-nav a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 8px 2px;
    font-size: 10.5px;
    text-align: center;
    white-space: normal;
  }

  .thesis-opening h1,
  .canon-opening h1,
  .archive-copy h1,
  .brief-opening h1,
  .section-axis-head h2,
  .stone-heading h2,
  .brief-aside h2,
  .note-card h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .home-copy,
  .thesis-opening p:not(.eyebrow),
  .canon-opening p:not(.eyebrow),
  .archive-copy p:not(.eyebrow),
  .brief-opening p:not(.eyebrow),
  .section-axis-head p:not(.eyebrow),
  .note-card p,
  .stone-body p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .brief-opening {
    gap: 8px;
  }

  .brief-system {
    width: 150px;
    margin-top: -8px;
    margin-bottom: -24px;
    opacity: 0.2;
  }

  .archive-card-top {
    gap: 10px;
  }
}

.hero-art img,
.monument-field img,
.brief-system img {
  -webkit-mask-image: none !important;
  -webkit-mask-composite: initial !important;
  mask-image: none !important;
  mask-composite: initial !important;
}

.hero-art img {
  opacity: 1;
  mix-blend-mode: multiply;
  filter: contrast(1.04) saturate(0.88) drop-shadow(0 26px 58px rgba(23, 25, 20, 0.08));
}

.monument-field img {
  opacity: 0.88;
  mix-blend-mode: normal;
  filter: contrast(0.98) saturate(0.9) drop-shadow(0 24px 58px rgba(23, 25, 20, 0.08));
}

.brief-system img {
  opacity: 0.66;
  mix-blend-mode: multiply;
  filter: grayscale(0.12) saturate(0.82) drop-shadow(0 16px 42px rgba(23, 25, 20, 0.045));
}

/* v0.2.0 interaction foundation: narrative systems */
.narrative-section {
  background:
    linear-gradient(90deg, rgba(47, 111, 99, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(168, 141, 84, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 247, 238, 0.3), rgba(243, 238, 228, 0.56));
  background-size: 78px 78px, 78px 78px, auto;
}

.civilization-section {
  padding-top: 88px;
}

.operating-loop-section {
  background:
    radial-gradient(ellipse at 74% 36%, rgba(47, 111, 99, 0.08), transparent 32rem),
    linear-gradient(180deg, rgba(250, 247, 238, 0.2), rgba(243, 238, 228, 0.58));
}

.narrative-tabs {
  margin-top: 52px;
}

.civilization-system,
.operating-loop-system {
  position: relative;
  border-top: 1px solid rgba(168, 141, 84, 0.34);
  border-bottom: 1px solid rgba(47, 111, 99, 0.28);
  background: rgba(250, 247, 238, 0.54);
}

.civilization-system {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
}

.stack-rail {
  display: grid;
  border-left: 1px solid rgba(168, 141, 84, 0.3);
}

.stack-layer,
.loop-node {
  position: relative;
  z-index: 1;
  border: 0;
  color: var(--graphite);
  cursor: pointer;
  text-align: left;
}

.stack-layer {
  display: grid;
  min-height: 88px;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid rgba(47, 111, 99, 0.18);
  padding: 0 30px 0 0;
  background: transparent;
}

.stack-layer:last-child {
  border-bottom: 0;
}

.stack-layer::before {
  position: absolute;
  top: 50%;
  right: 24px;
  left: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 111, 99, 0.34), rgba(168, 141, 84, 0.22), transparent);
  transform: translateY(-50%);
  content: "";
}

.stack-layer::after,
.loop-node::after {
  position: absolute;
  opacity: 0;
  content: "";
}

.stack-layer span,
.loop-node span {
  color: rgba(168, 141, 84, 0.86);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
}

.stack-layer span {
  display: grid;
  min-height: 88px;
  place-items: center;
  border-right: 1px solid rgba(168, 141, 84, 0.22);
}

.stack-layer strong,
.loop-node strong {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.1;
}

.stack-layer:hover,
.stack-layer:focus-visible,
.stack-layer.is-active,
.loop-node:hover,
.loop-node:focus-visible,
.loop-node.is-active {
  outline: none;
}

.stack-layer:hover,
.stack-layer:focus-visible,
.stack-layer.is-active {
  background:
    linear-gradient(90deg, rgba(47, 111, 99, 0.1), rgba(250, 247, 238, 0.36) 62%, transparent);
}

.stack-layer:hover::after,
.stack-layer:focus-visible::after,
.stack-layer.is-active::after {
  top: 0;
  bottom: 0;
  left: -1px;
  width: 2px;
  background: linear-gradient(180deg, var(--brass), var(--teal));
  opacity: 1;
}

.stack-readout,
.loop-readout {
  position: relative;
  display: grid;
  align-items: center;
  border-left: 1px solid rgba(47, 111, 99, 0.24);
  padding: 34px;
}

.stack-readout {
  min-height: 352px;
}

.narrative-panel h3 {
  margin-top: 22px;
  color: var(--charcoal);
  font-size: 30px;
  line-height: 1.12;
}

.narrative-panel p:not(.panel-label) {
  margin-top: 18px;
  color: rgba(103, 99, 90, 0.94);
  font-size: 17px;
  line-height: 1.66;
}

.js .narrative-panel:not(.is-active) {
  display: none;
}

.operating-loop-system {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.42fr);
}

.loop-surface {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  gap: 12px;
  border-left: 1px solid rgba(168, 141, 84, 0.28);
  padding: 36px;
  overflow: hidden;
}

.loop-surface::before {
  position: absolute;
  inset: 60px 78px;
  border: 1px solid rgba(47, 111, 99, 0.24);
  border-radius: 50%;
  content: "";
}

.loop-surface::after {
  position: absolute;
  inset: 50% 72px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 141, 84, 0.4), rgba(47, 111, 99, 0.34), transparent);
  content: "";
}

.loop-node {
  display: grid;
  min-height: 78px;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(47, 111, 99, 0.28);
  padding: 16px;
  background: rgba(250, 247, 238, 0.82);
  box-shadow: 0 14px 36px rgba(23, 25, 20, 0.045);
}

.loop-node:nth-child(1) {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}

.loop-node:nth-child(2) {
  grid-column: 5 / 7;
  grid-row: 2 / 4;
}

.loop-node:nth-child(3) {
  grid-column: 4 / 6;
  grid-row: 5 / 7;
}

.loop-node:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 5 / 7;
}

.loop-node:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
}

.loop-node::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(168, 141, 84, 0.14);
  pointer-events: none;
  content: "";
}

.loop-node:hover,
.loop-node:focus-visible,
.loop-node.is-active {
  border-color: rgba(47, 111, 99, 0.62);
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.96), rgba(47, 111, 99, 0.08));
}

.loop-node:hover::after,
.loop-node:focus-visible::after,
.loop-node.is-active::after {
  top: -1px;
  right: -1px;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--teal));
  opacity: 1;
}

.loop-readout {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.72), rgba(243, 238, 228, 0.42));
}

@media (max-width: 1040px) {
  .civilization-system,
  .operating-loop-system {
    grid-template-columns: 1fr;
  }

  .stack-readout,
  .loop-readout {
    min-height: auto;
    border-top: 1px solid rgba(47, 111, 99, 0.2);
    border-left: 1px solid rgba(168, 141, 84, 0.28);
  }

  .loop-surface {
    min-height: 390px;
  }
}

@media (max-width: 860px) {
  .civilization-section {
    padding-top: 72px;
  }

  .narrative-tabs {
    margin-top: 38px;
  }

  .stack-layer {
    min-height: 72px;
    grid-template-columns: 56px minmax(0, 1fr);
    padding-right: 18px;
  }

  .stack-layer span {
    min-height: 72px;
  }

  .stack-layer::before {
    left: 56px;
  }

  .stack-readout,
  .loop-readout {
    padding: 28px;
  }

  .loop-surface {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0;
    padding: 0;
    overflow: visible;
  }

  .loop-surface::before,
  .loop-surface::after {
    display: none;
  }

  .loop-node,
  .loop-node:nth-child(1),
  .loop-node:nth-child(2),
  .loop-node:nth-child(3),
  .loop-node:nth-child(4),
  .loop-node:nth-child(5) {
    min-height: 74px;
    grid-column: auto;
    grid-row: auto;
    border-width: 0 0 1px;
    box-shadow: none;
  }

  .loop-node:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .narrative-section {
    background-size: 64px 64px, 64px 64px, auto;
  }

  .stack-layer strong,
  .loop-node strong {
    font-size: 18px;
  }

  .narrative-panel h3 {
    font-size: 25px;
  }

  .narrative-panel p:not(.panel-label) {
    font-size: 16px;
  }

  .stack-readout,
  .loop-readout {
    padding: 24px;
  }
}

/* v0.2.1 thesis navigator and canon explorer */
.premise-navigator.narrative-tabs,
.concept-explorer.narrative-tabs {
  margin-top: 0;
}

.axiom-explorer.narrative-tabs {
  margin-top: 44px;
}

.premise-navigator-head {
  max-width: 760px;
  border-left: 2px solid rgba(168, 141, 84, 0.5);
  padding-left: 28px;
}

.premise-navigator-head h2 {
  margin-top: 18px;
  font-size: clamp(34px, 3.3vw, 46px);
  line-height: 1.08;
}

.premise-system {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid rgba(168, 141, 84, 0.34);
  border-bottom: 1px solid rgba(47, 111, 99, 0.28);
  background: rgba(250, 247, 238, 0.46);
}

.premise-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(168, 141, 84, 0.28);
}

button.premise,
.axiom-card,
.concept-tablet {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: var(--graphite);
  cursor: pointer;
  text-align: left;
}

button.premise {
  min-height: 274px;
  border-right: 1px solid rgba(47, 111, 99, 0.2);
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.86), rgba(243, 238, 228, 0.58));
}

button.premise:last-child {
  border-right: 0;
}

button.premise strong,
.axiom-card strong,
.concept-tablet strong {
  display: block;
  color: var(--charcoal);
  overflow-wrap: break-word;
}

button.premise strong {
  margin-top: 22px;
  font-size: 25px;
  line-height: 1.12;
}

.premise-claim {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

button.premise:hover,
button.premise:focus-visible,
button.premise.is-active,
.axiom-card:hover,
.axiom-card:focus-visible,
.axiom-card.is-active,
.concept-tablet:hover,
.concept-tablet:focus-visible,
.concept-tablet.is-active {
  outline: none;
}

button.premise:hover,
button.premise:focus-visible,
button.premise.is-active {
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.98), rgba(47, 111, 99, 0.08));
}

button.premise::after,
.axiom-card::after,
.concept-tablet::after {
  position: absolute;
  opacity: 0;
  content: "";
}

button.premise:hover::after,
button.premise:focus-visible::after,
button.premise.is-active::after {
  right: 28px;
  bottom: -1px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--teal));
  opacity: 1;
}

button.premise:focus-visible,
.axiom-card:focus-visible,
.concept-tablet:focus-visible {
  z-index: 2;
  outline: 2px solid rgba(47, 111, 99, 0.58);
  outline-offset: -2px;
}

.premise-readout,
.axiom-readout,
.concept-readout {
  display: grid;
  gap: 22px;
}

.premise-readout {
  min-height: 284px;
  border-top: 1px solid rgba(47, 111, 99, 0.24);
  border-right: 1px solid rgba(168, 141, 84, 0.26);
  border-left: 1px solid rgba(168, 141, 84, 0.26);
  padding: 38px 42px;
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.82), rgba(243, 238, 228, 0.42));
}

.premise-panel,
.axiom-panel,
.concept-panel {
  max-width: 780px;
}

.premise-panel h3,
.axiom-panel h3,
.concept-panel h3 {
  max-width: 680px;
}

.axiom-explorer {
  display: grid;
  gap: 0;
}

.axiom-system {
  margin-top: 0;
  background: rgba(250, 247, 238, 0.5);
}

.axiom-card {
  display: grid;
  min-height: 180px;
  align-content: start;
  border-right: 1px solid rgba(168, 141, 84, 0.24);
  padding: 28px;
  background: rgba(250, 247, 238, 0.56);
}

.axiom-card:nth-child(1),
.axiom-card:nth-child(2) {
  grid-column: span 3;
}

.axiom-card:nth-child(n+3) {
  grid-column: span 2;
  border-top: 1px solid rgba(168, 141, 84, 0.24);
}

.axiom-card:nth-child(2),
.axiom-card:nth-child(5) {
  border-right: 0;
}

.axiom-card strong {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 680;
  line-height: 1.34;
}

.axiom-card:hover,
.axiom-card:focus-visible,
.axiom-card.is-active {
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.96), rgba(47, 111, 99, 0.07));
}

.axiom-card:hover::after,
.axiom-card:focus-visible::after,
.axiom-card.is-active::after,
.concept-tablet:hover::after,
.concept-tablet:focus-visible::after,
.concept-tablet.is-active::after {
  top: -1px;
  right: -1px;
  left: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--teal));
  opacity: 1;
}

.axiom-readout,
.concept-readout {
  border: 1px solid rgba(47, 111, 99, 0.3);
  border-top: 0;
  padding: 34px 38px;
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.84), rgba(243, 238, 228, 0.48));
}

.concept-explorer {
  display: grid;
  gap: 0;
}

.concept-tablets {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(168, 141, 84, 0.28);
  background: rgba(250, 247, 238, 0.46);
}

.concept-tablet {
  display: grid;
  min-height: 184px;
  align-content: start;
  border-right: 1px solid rgba(168, 141, 84, 0.22);
  border-bottom: 1px solid rgba(168, 141, 84, 0.22);
  padding: 24px;
  background: rgba(250, 247, 238, 0.54);
}

.concept-tablet:nth-child(2n) {
  border-right: 0;
}

.concept-tablet:nth-last-child(-n+1) {
  border-bottom: 0;
}

.concept-tablet span:first-child {
  color: #8c7548;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

.concept-tablet strong {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.18;
}

.concept-definition {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.concept-tablet:hover,
.concept-tablet:focus-visible,
.concept-tablet.is-active {
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.98), rgba(168, 141, 84, 0.08));
}

.concept-readout {
  min-height: 262px;
}

.concept-why {
  border-left: 1px solid rgba(168, 141, 84, 0.5);
  padding-left: 18px;
}

@media (max-width: 1040px) {
  .premise-track {
    grid-template-columns: 1fr;
  }

  button.premise {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 111, 99, 0.2);
  }

  button.premise:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 860px) {
  .premise-navigator-head,
  .premise-readout,
  .axiom-readout,
  .concept-readout {
    padding-right: 28px;
    padding-left: 28px;
  }

  .premise-system,
  .axiom-explorer.narrative-tabs {
    margin-top: 34px;
  }

  .axiom-card,
  .axiom-card:nth-child(1),
  .axiom-card:nth-child(2),
  .axiom-card:nth-child(n+3) {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
    border-top: 1px solid rgba(168, 141, 84, 0.24);
  }

  .axiom-card:first-child {
    border-top: 0;
  }

  .concept-tablets {
    grid-template-columns: 1fr;
  }

  .concept-tablet,
  .concept-tablet:nth-child(2n),
  .concept-tablet:nth-last-child(-n+1) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(168, 141, 84, 0.22);
  }

  .concept-tablet:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .premise-navigator-head {
    padding-left: 20px;
  }

  .premise-navigator-head h2 {
    font-size: 30px;
  }

  button.premise,
  .axiom-card,
  .concept-tablet,
  .premise-readout,
  .axiom-readout,
  .concept-readout {
    padding: 24px;
  }

  button.premise strong {
    font-size: 22px;
  }

  .axiom-card strong,
  .concept-tablet strong {
    font-size: 18px;
  }
}

/* v0.2.2 notes archive system */
.notes-archive.narrative-tabs {
  margin-top: 0;
}

.archive-intro {
  max-width: 820px;
}

.archive-system-layout {
  display: grid;
  margin-top: 44px;
  grid-template-columns: minmax(190px, 0.25fr) minmax(0, 0.47fr) minmax(280px, 0.36fr);
  gap: 18px;
  align-items: start;
}

.archive-controls,
.archive-readout,
.future-archive-principle {
  border: 1px solid rgba(47, 111, 99, 0.28);
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.82), rgba(243, 238, 228, 0.46));
}

.archive-controls {
  padding: 22px;
}

.archive-control-group + .archive-control-group {
  margin-top: 26px;
  border-top: 1px solid rgba(168, 141, 84, 0.22);
  padding-top: 24px;
}

.archive-control-group > p,
.archive-count,
.archive-readout-meta {
  color: rgba(23, 25, 20, 0.56);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.archive-segments {
  display: grid;
  margin-top: 12px;
  gap: 7px;
}

.archive-segments button {
  appearance: none;
  -webkit-appearance: none;
  min-height: 38px;
  border: 1px solid rgba(168, 141, 84, 0.28);
  border-radius: 0;
  padding: 9px 11px;
  background: rgba(250, 247, 238, 0.48);
  color: var(--graphite);
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
}

.archive-segments button:hover,
.archive-segments button:focus-visible,
.archive-segments button.is-active {
  border-color: rgba(47, 111, 99, 0.58);
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.96), rgba(47, 111, 99, 0.08));
  outline: none;
}

.archive-segments button:focus-visible {
  outline: 2px solid rgba(47, 111, 99, 0.58);
  outline-offset: 2px;
}

.archive-count {
  margin-top: 26px;
  border-top: 1px solid rgba(168, 141, 84, 0.22);
  padding-top: 18px;
  color: rgba(47, 111, 99, 0.82);
}

.archive-note-grid {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 14px;
}

.archive-note {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 292px;
  margin: 0;
  border-radius: 0;
  color: var(--graphite);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.archive-note[hidden],
.archive-note-panel[hidden],
.archive-empty[hidden] {
  display: none;
}

.archive-note:hover,
.archive-note:focus-visible,
.archive-note.is-active {
  border-color: rgba(47, 111, 99, 0.64);
  background:
    linear-gradient(180deg, rgba(250, 247, 238, 0.92), rgba(47, 111, 99, 0.07)),
    linear-gradient(90deg, rgba(47, 111, 99, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(168, 141, 84, 0.055) 1px, transparent 1px);
  outline: none;
}

.archive-note:focus-visible {
  outline: 2px solid rgba(47, 111, 99, 0.58);
  outline-offset: 2px;
}

.archive-note.is-active::after {
  right: 28px;
  bottom: -1px;
  left: 28px;
  width: auto;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--teal));
}

.archive-note-title {
  display: block;
  margin-top: 22px;
  max-width: 92%;
  color: var(--charcoal);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.15;
}

.archive-note-thesis {
  display: block;
  margin-top: 18px;
  color: rgba(103, 99, 90, 0.94);
  font-size: 15.5px;
  line-height: 1.62;
}

.archive-note .archive-card-footer {
  margin-top: 24px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(38, 42, 38, 0.7);
  font-size: 14px;
  font-weight: 580;
  line-height: 1.55;
}

.archive-note .archive-card-footer::before {
  display: block;
  margin-bottom: 8px;
  color: rgba(168, 141, 84, 0.82);
  font-size: 10.5px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "Place in larger argument";
}

.archive-empty {
  margin: 0;
  border: 1px solid rgba(168, 141, 84, 0.28);
  padding: 28px;
  background: rgba(250, 247, 238, 0.62);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.archive-readout {
  position: sticky;
  top: 112px;
  min-height: 350px;
  padding: 30px;
}

.archive-note-panel {
  max-width: none;
}

.archive-note-panel h3 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.12;
}

.archive-note-panel p:not(.panel-label):not(.archive-readout-meta) {
  margin-top: 20px;
  color: rgba(103, 99, 90, 0.96);
  font-size: 16px;
  line-height: 1.66;
}

.archive-note-panel p strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(168, 141, 84, 0.86);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.future-archive-principle {
  margin-top: 22px;
  padding: 28px 30px;
}

.future-archive-principle p:not(.eyebrow) {
  margin-top: 14px;
  max-width: 860px;
  color: rgba(38, 42, 38, 0.76);
  font-size: 17px;
  line-height: 1.64;
}

/* v0.3 Chinese narrative entry */
.zh-site-shell {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.zh-site-nav {
  display: flex;
  width: auto;
}

.zh-hero {
  padding: 112px 0 78px;
}

.zh-hero-inner {
  display: grid;
  min-height: 420px;
  align-items: center;
  border-top: 1px solid rgba(168, 141, 84, 0.34);
  border-bottom: 1px solid rgba(47, 111, 99, 0.26);
}

.zh-hero h1 {
  margin-top: 24px;
  font-size: clamp(64px, 9vw, 118px);
  line-height: 0.96;
}

.zh-hero p:not(.eyebrow) {
  margin-top: 28px;
  max-width: 760px;
  color: var(--graphite);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 620;
  letter-spacing: normal;
  line-height: 1.46;
  text-align: left;
  word-spacing: normal;
}

.zh-hero .zh-hero-body {
  margin-top: 26px;
  max-width: 820px;
}

.zh-hero .zh-hero-body p {
  margin: 0;
  color: rgba(38, 42, 38, 0.76);
  font-size: 18px;
  font-weight: 560;
  letter-spacing: normal;
  line-height: 1.78;
  text-align: left;
  word-spacing: normal;
}

.zh-hero .zh-hero-body p + p {
  margin-top: 14px;
}

.zh-narrative-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.72fr);
  gap: 72px;
  align-items: start;
}

.zh-narrative-copy {
  max-width: 760px;
  border-left: 1px solid rgba(47, 111, 99, 0.34);
  padding-left: 34px;
}

.zh-narrative-copy p,
.zh-doctrine-block p:not(.eyebrow),
.zh-closing p {
  color: rgba(38, 42, 38, 0.76);
  font-size: 18px;
  letter-spacing: normal;
  line-height: 1.82;
  text-align: left;
  word-spacing: normal;
}

.zh-narrative-copy p + p,
.zh-doctrine-block p + p,
.zh-closing p + .hero-actions {
  margin-top: 22px;
}

.zh-doctrine-block h2 {
  margin-top: 20px;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.zh-doctrine-block p:not(.eyebrow) {
  max-width: 860px;
}

.zh-closing {
  border-top: 1px solid rgba(168, 141, 84, 0.34);
  padding-top: 36px;
}

@media (max-width: 860px) {
  .zh-header-inner {
    flex-wrap: nowrap;
  }

  .zh-site-nav {
    order: initial;
    width: auto;
    border-top: 0;
    padding-top: 0;
  }

  .zh-hero {
    padding: 82px 0 48px;
  }

  .zh-hero-inner {
    min-height: 320px;
  }

  .zh-narrative-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .zh-narrative-copy {
    border-left: 0;
    border-top: 1px solid rgba(47, 111, 99, 0.28);
    padding-top: 26px;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .zh-hero h1,
  .zh-doctrine-block h2,
  .zh-narrative-grid h2 {
    overflow-wrap: anywhere;
  }

  .zh-hero p:not(.eyebrow),
  .zh-narrative-copy p,
  .zh-doctrine-block p:not(.eyebrow),
  .zh-closing p {
    font-size: 16.5px;
    line-height: 1.78;
  }

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

@media (max-width: 1040px) {
  .archive-system-layout {
    grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  }

  .archive-readout {
    position: relative;
    top: auto;
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .archive-system-layout {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

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

  .archive-control-group + .archive-control-group {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
  }

  .archive-count {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .archive-controls {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .archive-control-group + .archive-control-group {
    border-top: 1px solid rgba(168, 141, 84, 0.22);
    padding-top: 20px;
  }

  .archive-note,
  .archive-readout,
  .future-archive-principle,
  .archive-empty {
    padding: 24px;
  }

  .archive-note-title,
  .archive-note-panel h3 {
    max-width: 100%;
    font-size: 23px;
  }
}
