:root {
  --ink: #1a1410;
  --ink-soft: #2b231d;
  --ink-mid: #463b32;
  --gray-fog: #6f6457;
  --gray-mist: #9a8f80;
  --gray-bone: #cdc1ad;
  --paper: #f6f0e1;
  --paper-deep: #ebe2cc;
  --paper-warm: #f9f4e8;
  --sandstone: #b14d2a;
  --sandstone-deep: #893519;
  --sandstone-glow: #d56a3f;
  --sage: #6f7962;
  --sage-deep: #4f5847;
  --bone: #ddd0b3;
  --rule: rgba(26, 20, 16, 0.14);
  --rule-strong: rgba(26, 20, 16, 0.42);
  --rule-bold: rgba(26, 20, 16, 0.85);
  --display: "Bodoni Moda", "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: "Archivo", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1600px;
  --pad: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-feature-settings: "kern", "liga", "ss01";
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, rgba(26, 20, 16, 0.045) 1px, transparent 1px),
    radial-gradient(ellipse at top, rgba(177, 77, 42, 0.06), transparent 60%);
  background-position: center top, center top;
  background-size: 96px 100%, 100% 720px;
  background-repeat: repeat-y, no-repeat;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

::selection {
  background: var(--sandstone);
  color: var(--paper);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 0;
  background: var(--sandstone);
  z-index: 100;
  transition: width 0.08s linear;
}

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 240, 225, 0.92);
  border-bottom: 1px solid var(--rule-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-logo {
  width: 56px;
  height: auto;
  display: block;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--gray-fog);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: var(--sandstone);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

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

.nav-meta {
  display: flex;
  justify-content: end;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nav-cta:hover,
.btn:hover {
  background: var(--sandstone);
  border-color: var(--sandstone);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

/* layout shells */
.hero,
.section,
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* hero */
.hero {
  min-height: 92vh;
  padding-top: 84px;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  border-bottom: 2px solid var(--ink);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(177, 77, 42, 0.06), transparent);
}

.hero-meta {
  grid-column: 1 / 4;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray-fog);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-meta > div {
  position: relative;
  padding-left: 14px;
}

.hero-meta > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  background: var(--sandstone);
}

.hero-meta span {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.hero-main {
  grid-column: 4 / 13;
  display: flex;
  flex-direction: column;
}

.tag {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 32px;
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--sandstone);
}

.tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule-strong);
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1 {
  margin: 0 0 42px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(80px, 13.2vw, 232px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  font-feature-settings: "kern", "liga", "dlig";
  font-optical-sizing: auto;
}

h1 span {
  display: block;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sandstone);
}

.ornament {
  display: block;
  margin-top: 8px;
  color: var(--gray-fog);
  font-family: var(--mono);
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

em {
  font-style: italic;
  color: var(--sandstone);
}

.hero-foot {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 24px;
  padding: 32px 0 56px;
  margin-top: auto;
  border-top: 1px solid var(--rule);
}

.hero-sub {
  grid-column: 1 / 6;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  grid-column: 6 / 10;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
  align-items: start;
}

/* edition band */
.edition-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px var(--pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--rule-strong);
  background: linear-gradient(to right, rgba(177, 77, 42, 0.025), transparent 50%);
}

.edition-lockup {
  grid-column: 1 / 5;
  display: flex;
  align-items: center;
  gap: 18px;
}

.edition-logo {
  width: 124px;
  display: block;
}

.edition-logo img,
.footer-brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.edition-meta {
  color: var(--gray-fog);
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.edition-meta b {
  color: var(--ink);
  font-weight: 600;
}

.edition-copy {
  grid-column: 5 / 13;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
}

/* marquee */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.marquee-inner {
  display: flex;
  gap: 54px;
  width: max-content;
  padding: 18px 0;
  color: var(--gray-bone);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scroll 56s linear infinite;
}

.marquee span::after {
  content: " ✦";
  color: var(--sandstone-glow);
  margin-left: 54px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* section */
.section {
  padding-top: 112px;
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--rule-strong);
  position: relative;
}

.section-label {
  grid-column: 1 / 4;
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-label span {
  display: block;
  margin-top: 8px;
  color: var(--gray-fog);
}

.section-body {
  grid-column: 4 / 13;
}

.section h2 {
  max-width: 980px;
  margin-bottom: 38px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  font-optical-sizing: auto;
}

.section h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sandstone);
}

.split-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.split-copy p {
  margin: 0;
}

/* rule cards */
.rules,
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.rule,
.card {
  min-height: 240px;
  padding: 36px 30px;
  border-right: 1px solid var(--rule-strong);
  position: relative;
  background: linear-gradient(to bottom, transparent, rgba(177, 77, 42, 0));
  transition: background 0.32s ease;
}

.rule:hover,
.card:hover {
  background: linear-gradient(to bottom, rgba(177, 77, 42, 0.04), transparent);
}

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

.rule-kicker,
.card-kicker {
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rule h3,
.card h3 {
  margin: 22px 0 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.06;
  letter-spacing: -0.018em;
  font-optical-sizing: auto;
}

.rule h3 em,
.card h3 em {
  font-style: italic;
  color: var(--sandstone);
}

.rule p,
.card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}

/* register / index table */
.index {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.search-label {
  display: block;
  margin: 0 0 8px;
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-search {
  width: min(560px, 100%);
  min-height: 48px;
  margin: 0 0 26px;
  padding: 12px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule-strong);
  font: 500 15px var(--sans);
}

.register-search:focus {
  outline: 2px solid var(--sandstone);
  outline-offset: 2px;
}

.index-row {
  display: grid;
  grid-template-columns: 64px 1.5fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  padding: 0 4px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  transition: background 0.18s ease, padding-left 0.18s ease;
}

a.index-row:hover {
  background: var(--paper-deep);
  padding-left: 16px;
}

.index-row:last-child {
  border-bottom: 0;
}

.index-head {
  min-height: 44px;
  color: var(--gray-fog);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idx-no,
.idx-trade,
.idx-status {
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.idx-name {
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
}

/* member card grid (the move 702 has — drop-cap stamp cards) */
.member-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.member-cards article {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 32px 28px 28px;
  background: var(--paper-warm);
  border-right: 1px solid var(--rule-strong);
  position: relative;
  overflow: hidden;
  transition: background 0.28s ease;
}

.member-cards article:nth-child(3n) {
  border-right: 0;
}

.member-cards article:nth-child(n+4) {
  border-top: 1px solid var(--rule-strong);
}

.member-cards article:hover {
  background: var(--paper-deep);
}

.mc-stamp {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-fog);
}

.mc-stamp b {
  color: var(--sandstone);
  font-weight: 500;
}

.mc-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 96px;
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin: 4px 0 22px;
  font-optical-sizing: auto;
}

.mc-mark em {
  font-style: italic;
  font-weight: 500;
  color: var(--sandstone);
}

.mc-trade {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: var(--bone);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.member-cards h3 {
  margin: 4px 0 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.014em;
  font-optical-sizing: auto;
}

.member-cards p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.mc-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-fog);
}

.mc-foot a {
  color: var(--sandstone);
  font-weight: 500;
  transition: letter-spacing 0.22s ease;
}

.mc-foot a:hover {
  letter-spacing: 0.08em;
}

/* spotlight strip */
.story-strip {
  display: grid;
  grid-template-columns: 1.05fr 1.55fr;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.story-aside {
  padding: 36px 30px;
  background: var(--paper-deep);
  border-right: 1px solid var(--rule-strong);
}

.story-aside p {
  color: var(--ink-mid);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.85;
  text-transform: uppercase;
  margin: 0;
}

.story-main {
  padding: 38px 38px 34px;
}

.story-main h3 {
  margin: 0 0 18px;
  max-width: 780px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-optical-sizing: auto;
}

.story-main h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sandstone);
}

.story-main p {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

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

/* journal */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.journal-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 32px 28px;
  border-right: 1px solid var(--rule-strong);
  transition: background 0.28s ease;
}

.journal-card:hover {
  background: var(--paper-warm);
}

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

.journal-card h3 {
  margin: 18px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-optical-sizing: auto;
}

.journal-card h3 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sandstone);
}

.journal-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.journal-card .idx-status {
  margin-top: auto;
  align-self: start;
}

/* trades / spotlight grid (interior pages) */
.trade-grid,
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.trade-card,
.spotlight-card {
  min-height: 260px;
  padding: 30px 28px;
  border-right: 1px solid var(--rule-strong);
  transition: background 0.28s ease;
}

.trade-card:hover,
.spotlight-card:hover {
  background: var(--paper-warm);
}

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

.trade-card:nth-child(n+4),
.spotlight-card:nth-child(n+4) {
  border-top: 1px solid var(--rule-strong);
}

.trade-card h3,
.spotlight-card h3 {
  margin: 16px 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.014em;
  font-optical-sizing: auto;
}

.trade-card p,
.spotlight-card p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.65;
}

/* badge / preview */
.badge-preview {
  width: min(560px, 100%);
  margin: 28px 0 0;
  border: 1px solid var(--rule-strong);
}

/* contact / spec rows */
.contact-panel {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.contact-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row b {
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* quote / metric */
.quote-line {
  margin-top: 38px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule-strong);
  color: var(--ink-soft);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-top: 8px;
}

.metric-grid div {
  min-height: 144px;
  padding: 26px;
  border-right: 1px solid var(--rule-strong);
  color: var(--gray-fog);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-grid div:last-child {
  border-right: 0;
}

.metric-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 56px;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: none;
  font-optical-sizing: auto;
}

/* member pages — keep v12 contract */
.member-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) 60px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  border-bottom: 2px solid var(--ink);
}

.member-meta {
  grid-column: 1 / 4;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--gray-fog);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.member-main {
  grid-column: 4 / 13;
}

.member-main h1 {
  max-width: 1000px;
  margin: 0 0 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(56px, 9vw, 154px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-optical-sizing: auto;
}

.member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.member-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) 120px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.member-card {
  grid-column: 1 / 4;
  align-self: start;
  padding: 26px;
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.member-card h4 {
  margin: 0 0 14px;
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

.profile-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.profile-facts div {
  padding: 13px 0;
  border-top: 1px solid var(--rule);
}

.profile-facts div:first-child {
  border-top: 0;
}

.profile-facts dt {
  margin: 0 0 5px;
  color: var(--gray-fog);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.45;
}

.profile-story {
  grid-column: 4 / 11;
  max-width: 820px;
}

.profile-story h2 {
  margin: 0 0 24px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.024em;
  font-optical-sizing: auto;
}

.profile-story p,
.profile-story li {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

.profile-story ul {
  padding-left: 20px;
  overflow-wrap: anywhere;
}

.profile-sources {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-strong);
}

.profile-sources summary {
  cursor: pointer;
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-sources ul {
  margin-top: 16px;
}

/* dark callout — the founding panel, stronger than v12 */
.callout {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at top right, rgba(213, 106, 63, 0.18), transparent 55%);
}

.callout > * {
  position: relative;
}

.callout .section-label,
.callout em,
.callout .rule-kicker,
.callout .card-kicker {
  color: var(--sandstone-glow);
}

.callout .section-label span,
.callout p {
  color: var(--gray-bone);
}

.callout h2 em {
  color: var(--sandstone-glow);
}

.callout .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.callout .btn:hover {
  background: var(--sandstone-glow);
  color: var(--ink);
  border-color: var(--sandstone-glow);
}

.callout .btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.callout .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

/* footer */
.footer {
  padding-top: 80px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--sandstone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-mid);
  line-height: 1.95;
}

.footer ul a {
  transition: color 0.18s ease;
}

.footer ul a:hover {
  color: var(--sandstone);
}

.footer-brand-logo {
  width: 150px;
  margin-bottom: 18px;
}

.colophon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 26px;
  color: var(--gray-fog);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.colophon :last-child {
  text-align: right;
}

/* reveal — visible by default; only animates if JS adds .js-on to body */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-on .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js-on .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-on .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-inner { animation: none; }
}

/* responsive */
@media (max-width: 900px) {
  :root { --pad: 22px; }

  .nav-inner,
  .edition-band,
  .section,
  .footer-grid,
  .colophon {
    display: block;
  }

  .nav-links {
    gap: 14px;
    font-size: 11px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .nav-meta {
    margin-top: 14px;
    justify-content: start;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 48px;
  }

  .section-label {
    margin-bottom: 32px;
  }

  .hero-main {
    order: 1;
  }

  .hero-meta {
    order: 2;
    margin: 32px 0 0;
  }

  h1 {
    font-size: clamp(64px, 22vw, 122px);
    margin-bottom: 28px;
  }

  .hero-foot,
  .split-copy,
  .rules,
  .cards,
  .story-strip,
  .journal-grid,
  .trade-grid,
  .spotlight-grid,
  .member-cards,
  .metric-grid {
    display: block;
  }

  .hero-actions {
    justify-content: start;
  }

  .edition-lockup {
    margin-bottom: 24px;
  }

  .rule,
  .card,
  .trade-card,
  .spotlight-card,
  .journal-card,
  .member-cards article {
    border-right: 0;
    border-bottom: 1px solid var(--rule-strong);
    min-height: auto;
  }

  .member-cards article:nth-child(n+4) {
    border-top: 0;
  }

  .mc-mark {
    font-size: 76px;
  }

  .contact-row {
    display: block;
  }

  .contact-row b {
    display: block;
    margin-bottom: 8px;
  }

  .story-aside {
    border-right: 0;
    border-bottom: 1px solid var(--rule-strong);
  }

  .metric-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--rule-strong);
  }

  .index-row {
    grid-template-columns: 44px 1fr;
    gap: 10px;
    padding: 18px 0;
    min-height: auto;
  }

  .index-row span:nth-child(n+3) {
    grid-column: 2;
  }

  .index-head {
    display: none;
  }

  .member-top,
  .member-content {
    display: block;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .member-meta,
  .member-card {
    margin-bottom: 32px;
  }

  .member-main h1 {
    font-size: clamp(48px, 18vw, 88px);
  }

  .colophon :last-child {
    text-align: left;
    margin-top: 12px;
  }
}
