/* ============================================================
   Benedictus Group — scroll-driven hero, fixed-background MP4
   Tokens, layout, motion. Hardware-accelerated; transform/opacity only.
   ============================================================ */

:root {
  --ink: #0e0f10;
  --ink-2: #16181a;
  --paper: #f3f0e9;
  --paper-2: #e8e3d6;
  --line: rgba(243, 240, 233, 0.14);
  --line-2: rgba(243, 240, 233, 0.28);
  --mute: rgba(243, 240, 233, 0.62);
  --accent: #b6764a;            /* warm bronze, sub-80% sat */
  --accent-ink: #2d1c0f;

  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, sans-serif;
  --mono: "Geist Mono", ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;

  --maxw: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--ink); }
body {
  font-family: var(--font);
  font-weight: 400;
  font-feature-settings: "ss01", "ss02", "cv11";
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ===== NAV =====================================================*/
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  padding: 18px var(--gutter);
  color: var(--paper);
  background: linear-gradient(180deg, rgba(14,15,16,0.55) 0%, rgba(14,15,16,0) 100%);
  backdrop-filter: saturate(120%) blur(8px);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  transition: background 360ms var(--ease), backdrop-filter 360ms var(--ease);
}
.nav[data-condensed="true"] {
  background: rgba(14,15,16,0.72);
  border-bottom: 1px solid var(--line);
}
.nav__mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.nav__sigil {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--paper);
}
.nav__word { transform: translateY(0.5px); }
.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: 13.5px;
  color: var(--mute);
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 240ms var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 360ms var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  background: rgba(243,240,233,0.04);
  transition: transform 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease);
  will-change: transform;
}
.nav__cta:hover { background: rgba(243,240,233,0.10); border-color: rgba(243,240,233,0.42); }
.nav__cta:active { transform: translateY(1px) scale(0.985); }
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav { grid-template-columns: 1fr auto; }
}

/* ===== SCROLLER ================================================*/
.scroller {
  position: relative;
  /* total height = number of acts × 100vh; set by JS via --acts. */
  height: calc(var(--acts, 6) * 100vh);
}
.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.stage__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}
.stage__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  will-change: transform;
}
.stage__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 80% 30%, rgba(14,15,16,0.05) 0%, rgba(14,15,16,0.55) 65%, rgba(14,15,16,0.85) 100%),
    linear-gradient(180deg, rgba(14,15,16,0.50) 0%, rgba(14,15,16,0.20) 30%, rgba(14,15,16,0.55) 100%);
}
.stage__grain {
  position: fixed;        /* outside repaint container */
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Stage chrome (ticker + progress) ----- */
.stage__chrome {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  padding: 0 var(--gutter) 22px;
  pointer-events: none;
  display: grid;
  gap: 12px;
}
.ticker {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}
.ticker .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--mute);
  opacity: 0.6;
}
.progress {
  width: 100%;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.progress__bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--p, 0%);
  background: var(--paper);
  transition: width 120ms linear;
}

/* ===== ACTS ====================================================*/
.act {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: center;
  padding: clamp(96px, 12vh, 140px) var(--gutter) clamp(96px, 12vh, 140px);
  opacity: var(--t, 0);
  pointer-events: none;
  transform: translate3d(0, calc((1 - var(--t, 0)) * 24px), 0);
  transition: transform 60ms linear;
}
.act[data-active="true"] { pointer-events: auto; }
.act__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.act__head {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(28px, 5vh, 56px);
  max-width: 60ch;
}
.kicker {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}
.meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 4vh, 36px);
}
.meta__rule {
  width: clamp(28px, 6vw, 64px);
  height: 1px;
  background: var(--paper);
  opacity: 0.55;
}
.meta__label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--paper);
}

/* Display type — taste-skill: tracking-tighter, leading-none, large but not screaming */
.display {
  font-weight: 400;
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 clamp(20px, 3.5vh, 32px);
  max-width: 18ch;
  color: var(--paper);
}
.display em {
  font-style: normal;
  color: var(--paper);
  position: relative;
}
.display em::after {
  content: "";
  position: absolute;
  left: 0; right: 6%;
  bottom: 0.06em;
  height: 0.06em;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: rule-in 1200ms var(--ease) 350ms forwards;
}
.act[data-active="true"] .display em::after { animation-play-state: running; }
@keyframes rule-in {
  to { transform: scaleX(1); }
}
.display--md {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 0.96;
}
.lede {
  max-width: 56ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(243,240,233,0.78);
  margin: 0;
}

/* ----- ACT 1 (intro) — left-aligned, scroll cue bottom-right */
.act--intro .act__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}
.act--intro .lede { grid-column: 1 / -1; max-width: 64ch; }
@media (max-width: 900px) {
  .act--intro .act__inner { grid-template-columns: 1fr; }
}
.cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(80px, 14vh, 130px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mute);
  animation: cue-bob 2400ms ease-in-out infinite;
}
@keyframes cue-bob {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ----- ACT 2 (statement) — large quote, right-offset signoff */
.act--statement .act__inner {
  max-width: 1040px;
}
.statement {
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  margin: 18px 0 clamp(28px, 5vh, 48px);
  color: var(--paper);
  max-width: 22ch;
}
.statement .ink {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-feature-settings: "ss01";
}
.signoff {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mute);
  margin-left: clamp(0px, 6vw, 64px);
}
.signoff__rule {
  width: clamp(40px, 8vw, 96px);
  height: 1px;
  background: var(--mute);
}

/* ----- ACT 3 (discipline list) — divide-y, no cards */
.discipline {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
  max-width: 1080px;
}
.discipline li {
  --d: 0ms;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 720ms var(--ease) var(--d), transform 720ms var(--ease) var(--d);
  border-bottom: 1px solid var(--line);
}
.act[data-active="true"] .discipline li {
  opacity: 1; transform: translate3d(0, 0, 0);
}
.discipline li:nth-child(1) { --d: 60ms; }
.discipline li:nth-child(2) { --d: 140ms; }
.discipline li:nth-child(3) { --d: 220ms; }
.discipline li:nth-child(4) { --d: 300ms; }
.discipline li:nth-child(5) { --d: 380ms; }
.discipline__row {
  display: grid;
  grid-template-columns: 64px 1fr 1.4fr 28px;
  gap: clamp(14px, 3vw, 36px);
  align-items: baseline;
  padding: clamp(18px, 2.6vh, 28px) 0;
  color: inherit;
  text-decoration: none;
  transition: padding 360ms var(--ease);
}
a.discipline__row:hover {
  padding-left: 8px;
  padding-right: 0;
}
a.discipline__row:hover .discipline__title { color: var(--accent); }
a.discipline__row:hover .discipline__arrow { transform: translateX(4px); color: var(--accent); }
.discipline__index {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.discipline__title {
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--paper);
  transition: color 360ms var(--ease);
}
.discipline__note {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(243,240,233,0.66);
  max-width: 50ch;
}
.discipline__arrow {
  font-family: var(--mono);
  font-size: 18px;
  color: rgba(243,240,233,0.42);
  text-align: right;
  transition: transform 360ms var(--ease), color 360ms var(--ease);
}
@media (max-width: 760px) {
  .discipline__row {
    grid-template-columns: 36px 1fr 24px;
    grid-template-areas:
      "i t a"
      ". n .";
  }
  .discipline__index { grid-area: i; }
  .discipline__title { grid-area: t; }
  .discipline__note  { grid-area: n; }
  .discipline__arrow { grid-area: a; }
}

/* ----- ACT 4 (standing) — typography only, hairline rows */
.standing {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line);
  max-width: 1100px;
}
.standing li {
  display: grid;
  grid-template-columns: clamp(120px, 16vw, 200px) 1fr 1.5fr;
  gap: clamp(14px, 3vw, 36px);
  align-items: baseline;
  padding: clamp(20px, 3vh, 32px) 0;
  border-bottom: 1px solid var(--line);
  --d: 0ms;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 720ms var(--ease) var(--d), transform 720ms var(--ease) var(--d);
}
.act[data-active="true"] .standing li {
  opacity: 1; transform: translate3d(0, 0, 0);
}
.standing li:nth-child(1) { --d: 80ms; }
.standing li:nth-child(2) { --d: 200ms; }
.standing li:nth-child(3) { --d: 320ms; }
.standing li:nth-child(4) { --d: 440ms; }
.standing__badge {
  font-family: var(--mono);
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
}
.standing__title {
  font-size: clamp(18px, 2.1vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--paper);
}
.standing__note {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(243,240,233,0.66);
  max-width: 52ch;
}
@media (max-width: 820px) {
  .standing li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: clamp(18px, 2.6vh, 26px) 0;
  }
  .standing__badge { font-size: clamp(22px, 6vw, 28px); }
}

/* ----- ACT 5 (regard) — aligned rules, no boxes */
.regard {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  gap: clamp(20px, 2.6vh, 28px);
  max-width: 980px;
}
.regard li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
  --d: 0ms;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 760ms var(--ease) var(--d), transform 760ms var(--ease) var(--d);
}
.act[data-active="true"] .regard li {
  opacity: 1; transform: translate3d(0, 0, 0);
}
.regard li:nth-child(1) { --d: 120ms; }
.regard li:nth-child(2) { --d: 260ms; }
.regard li:nth-child(3) { --d: 400ms; }
.regard__rule {
  display: block;
  height: 1px;
  background: var(--accent);
  margin-top: 0.85em;
}
.regard p {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--paper);
  max-width: 48ch;
}
.regard__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(28px, 5vh, 44px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  transition: color 240ms var(--ease), border-color 240ms var(--ease);
}
.regard__source:hover { color: var(--paper); border-color: var(--paper); }

/* ----- ACT 6 (contact) ----- */
.contact__lede {
  margin: 18px 0 clamp(28px, 5vh, 44px);
  max-width: 56ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(243,240,233,0.78);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(12px, 1.6vw, 18px);
  max-width: 1100px;
}
.contact__card {
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: clamp(20px, 2.6vh, 28px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(14,15,16,0.55);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  min-height: 184px;
  box-shadow: inset 0 1px 0 rgba(243,240,233,0.05);
  transition: transform 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
}
.contact__card:hover {
  border-color: var(--line-2);
  background: rgba(14,15,16,0.72);
}
.contact__card--primary {
  background: linear-gradient(180deg, rgba(182,118,74,0.18) 0%, rgba(14,15,16,0.55) 100%);
  border-color: rgba(182,118,74,0.36);
}
.contact__card--primary:hover { transform: translateY(-2px); }
.contact__label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact__value {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { min-height: 0; }
}

/* ===== FOOTER ==================================================*/
.foot {
  position: relative;
  z-index: 4;
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(40px, 8vh, 80px) var(--gutter);
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 4vw, 40px);
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--mute);
}
.foot__mark {
  font-family: var(--font);
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--paper);
}
.foot__line {
  text-align: center;
}
.foot__small { text-align: right; }
@media (max-width: 720px) {
  .foot__inner { grid-template-columns: 1fr; text-align: left; }
  .foot__line, .foot__small { text-align: left; }
}

/* ===== STATIC EDITORIAL PAGES ==================================*/
/* For renovations / heritage / new-builds / about — pure type, no
   scroll-scrub video. Same brand tokens, calmer pacing.            */

.page {
  background: var(--ink);
  color: var(--paper);
  min-height: 100dvh;
}
.page__hero {
  position: relative;
  padding: clamp(140px, 22vh, 200px) var(--gutter) clamp(80px, 12vh, 120px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(182,118,74,0.10) 0%, rgba(14,15,16,0) 60%),
    linear-gradient(180deg, rgba(243,240,233,0.04) 0%, rgba(14,15,16,0) 70%);
  pointer-events: none;
}
.page__hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(20px, 4vh, 32px);
}
.page__crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--mute);
}
.page__crumb a { color: var(--mute); transition: color 240ms var(--ease); }
.page__crumb a:hover { color: var(--paper); }
.page__crumb__sep { opacity: 0.6; }
.page__title {
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 18ch;
}
.page__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.page__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 6%;
  bottom: 0.06em;
  height: 0.06em;
  background: var(--accent);
}
.page__lede {
  max-width: 64ch;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(243,240,233,0.78);
  margin: 0;
}

.page__body {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 10vh, 120px) var(--gutter);
  display: grid;
  gap: clamp(60px, 10vh, 120px);
}

/* Editorial section — kicker + heading + content rail */
.section {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2.4fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.section__head {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 96px;
}
.section__head .kicker { grid-row: 1; }
.section__head h2 {
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0;
  max-width: 14ch;
}
.section__body {
  display: grid;
  gap: clamp(20px, 3vh, 28px);
  font-size: clamp(15.5px, 1.15vw, 17px);
  line-height: 1.65;
  color: rgba(243,240,233,0.82);
  max-width: 64ch;
}
.section__body p { margin: 0; }
.section__body p strong {
  color: var(--paper);
  font-weight: 500;
}

@media (max-width: 820px) {
  .section { grid-template-columns: 1fr; }
  .section__head { position: static; }
}

/* Editorial list (numbered hairlines, like discipline but static) */
.editorial-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.editorial-list li {
  display: grid;
  grid-template-columns: 56px 1fr 1.6fr;
  gap: clamp(14px, 3vw, 32px);
  align-items: baseline;
  padding: clamp(18px, 2.6vh, 26px) 0;
  border-bottom: 1px solid var(--line);
}
.editorial-list__no {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.editorial-list__title {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.014em;
  line-height: 1.15;
  color: var(--paper);
}
.editorial-list__note {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(243,240,233,0.66);
  max-width: 56ch;
}
@media (max-width: 720px) {
  .editorial-list li {
    grid-template-columns: 36px 1fr;
    grid-template-areas: "n t" ". d";
  }
  .editorial-list__no { grid-area: n; }
  .editorial-list__title { grid-area: t; }
  .editorial-list__note { grid-area: d; }
}

/* Cross-page CTA strip at the bottom of static pages */
.crosslink {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 7vh, 72px) var(--gutter);
  background: rgba(243,240,233,0.02);
}
.crosslink__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
}
.crosslink__text {
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.014em;
  line-height: 1.2;
  color: var(--paper);
  max-width: 22ch;
  margin: 0;
}
.crosslink__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: -0.005em;
  background: rgba(243,240,233,0.04);
  color: var(--paper);
  transition: transform 240ms var(--ease), background 240ms var(--ease), border-color 240ms var(--ease);
}
.crosslink__cta:hover { background: rgba(182,118,74,0.18); border-color: rgba(182,118,74,0.5); }
.crosslink__cta:active { transform: translateY(1px) scale(0.985); }
@media (max-width: 720px) {
  .crosslink__inner { grid-template-columns: 1fr; }
}

/* In-page navigation chips (for "in this section" jump links) */
.chips {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 240ms var(--ease), border-color 240ms var(--ease);
}
.chip:hover { color: var(--paper); border-color: var(--paper); }

/* ===== Reduced motion =========================================*/
@media (prefers-reduced-motion: reduce) {
  .cue, .display em::after { animation: none !important; }
  .act { transition: none; }
  .discipline li, .regard li, .standing li { opacity: 1 !important; transform: none !important; }
  .discipline__row:hover { padding-left: 0; padding-right: 0; }
}
