@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/font-1.ttf) format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/font-2.ttf) format('truetype');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/font-3.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/font-4.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/font-5.ttf) format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/font-6.ttf) format('truetype');
}


:root {
  --ink: #08070b;
  --ink-soft: #111017;
  --paper: #eee8dc;
  --muted: #9992a2;
  --gold: #c6a15b;
  --gold-bright: #e0bf7a;
  --violet: #5e3a88;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0; left: 0; right: 0;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(198,161,91,.18);
  background: linear-gradient(180deg, rgba(8,7,11,.9), transparent);
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  letter-spacing: .19em;
  font-weight: 600;
}
.brand-mark { color: var(--gold); font-size: 24px; }
nav { display: flex; align-items: center; gap: 34px; }
nav a {
  color: #c7c1ca;
  font-size: 12px;
  letter-spacing: .09em;
  transition: color .25s ease;
}
nav a:hover, nav a:focus-visible { color: var(--gold-bright); }
.nav-dropdown { position: relative; }
.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c7c1ca;
  font-size: 12px;
  letter-spacing: .09em;
  list-style: none;
  cursor: pointer;
  transition: color .25s ease;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary span { color: var(--gold); transition: transform .2s ease; }
.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible { color: var(--gold-bright); }
.nav-dropdown[open] summary span { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 34px;
  left: 50%;
  z-index: 40;
  width: 280px;
  padding: 10px;
  border: 1px solid rgba(198,161,91,.35);
  background: rgba(13,11,17,.98);
  box-shadow: 0 22px 55px rgba(0,0,0,.55);
  transform: translateX(-50%);
}
.nav-dropdown-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 13px;
  border: 0;
  border-bottom: 1px solid rgba(198,161,91,.11);
  background: transparent;
  color: #b9b2bd;
  font: inherit;
  font-size: 10px;
  letter-spacing: .11em;
  text-align: left;
  cursor: pointer;
}
.nav-dropdown-menu button:last-child { border-bottom: 0; }
.nav-dropdown-menu button span { color: var(--gold); font-size: 8px; }
.nav-dropdown-menu button:hover,
.nav-dropdown-menu button:focus-visible,
.nav-dropdown-menu button.is-active {
  background: rgba(198,161,91,.1);
  color: var(--gold-bright);
  outline: none;
}
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(198,161,91,.55);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  padding: 135px 8vw 80px;
  background:
    radial-gradient(circle at 72% 44%, rgba(68,36,102,.22), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(125,77,31,.1), transparent 25%),
    linear-gradient(110deg, #09080c 0%, #0c0a11 55%, #07060a 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle, black, transparent 80%);
}
.stars {
  position: absolute;
  inset: 0;
  opacity: .48;
  background-image:
    radial-gradient(circle at 16% 20%, #d7bd83 0 1px, transparent 1.5px),
    radial-gradient(circle at 84% 27%, #fff 0 1px, transparent 1.4px),
    radial-gradient(circle at 66% 76%, #d7bd83 0 1px, transparent 1.5px),
    radial-gradient(circle at 36% 63%, #fff 0 1px, transparent 1.4px);
  background-size: 210px 190px, 270px 260px, 330px 310px, 400px 370px;
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow span { width: 36px; height: 1px; background: var(--gold); }
h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(64px, 6.9vw, 112px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.045em;
}
h1 em { color: var(--gold-bright); font-weight: 500; }
.hero-lead {
  max-width: 590px;
  margin: 35px 0 0;
  color: #aaa4ae;
  font-size: 15px;
  line-height: 1.9;
}
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; gap: 28px;
  padding: 16px 22px;
  font-size: 12px; letter-spacing: .07em;
}
.button-gold { background: var(--gold); color: #131016; font-weight: 600; }
.button-gold:hover { background: var(--gold-bright); }
.text-link { font-size: 12px; color: #c9c3cb; border-bottom: 1px solid #615968; padding: 9px 0; }
.text-link span { color: var(--gold); margin-left: 8px; }
.hero-meta { display: flex; gap: 46px; margin-top: 48px; }
.hero-meta div { display: grid; gap: 3px; padding-left: 13px; border-left: 1px solid #4e454f; }
.hero-meta strong { font-family: "Cormorant Garamond", serif; font-size: 25px; color: #ddd3c4; }
.hero-meta span { color: #716b76; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }

.hero-art { position: relative; z-index: 1; aspect-ratio: 1; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(198,161,91,.2); border-radius: 50%; }
.orbit-one { width: 84%; height: 84%; animation: spin 38s linear infinite; }
.orbit-two { width: 65%; height: 65%; border-style: dashed; animation: spin 26s linear infinite reverse; }
.orbit::before, .orbit::after { content: "✦"; position: absolute; color: var(--gold); font-size: 12px; }
.orbit::before { top: -7px; left: 50%; }
.orbit::after { bottom: -7px; left: 50%; }
.sigil {
  position: relative;
  width: 47%; aspect-ratio: 1;
  display: grid; place-items: center;
  border: 1px solid rgba(224,191,122,.65);
  transform: rotate(45deg);
  box-shadow: 0 0 80px rgba(100,61,141,.22), inset 0 0 70px rgba(198,161,91,.06);
}
.sigil-ring { position: absolute; width: 72%; height: 72%; border: 2px solid var(--gold); border-radius: 50%; }
.sigil-ring::before, .sigil-ring::after { content: ""; position: absolute; inset: 14%; border: 1px solid rgba(224,191,122,.55); transform: rotate(45deg); }
.sigil-ring::after { transform: rotate(-45deg); }
.sigil-eye { transform: rotate(-45deg); color: var(--gold-bright); font-size: 58px; text-shadow: 0 0 30px rgba(224,191,122,.55); }
.sigil-ray { position: absolute; width: 138%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.ray-two { transform: rotate(90deg); }
.glyph { position: absolute; color: rgba(224,191,122,.7); font-family: serif; font-size: 22px; }
.glyph-one { top: 6%; left: 31%; }
.glyph-two { right: 3%; top: 45%; }
.glyph-three { bottom: 7%; left: 17%; }
.art-caption { position: absolute; bottom: -1%; color: #6d6570; font-size: 9px; letter-spacing: .35em; }
.scroll-cue { position: absolute; bottom: 0; left: 50%; display: grid; justify-items: center; gap: 8px; color: #625c65; font-size: 8px; letter-spacing: .25em; }
.scroll-cue i { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .site-header { padding: 0 24px; height: 76px; }
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 125px 24px 70px; }
  .hero-copy { text-align: center; margin: auto; }
  .eyebrow, .hero-actions, .hero-meta { justify-content: center; }
  .hero-art { width: min(620px, 86vw); margin: 50px auto 0; }
  .scroll-cue { display: none; }
}
@media (max-width: 560px) {
  .brand { font-size: 13px; }
  .nav-cta { padding: 9px 11px; font-size: 10px; }
  h1 { font-size: clamp(52px, 17vw, 76px); }
  .hero-actions { flex-direction: column; gap: 13px; }
  .hero-meta { gap: 22px; }
  .hero-art { width: 96vw; margin-left: -24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit-one, .orbit-two { animation: none; }
}

.section { padding: 120px 8vw; }
.section-kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.section h2, .initiation h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 5vw, 74px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.035em;
}
.section h2 em, .initiation h2 em { color: var(--gold-bright); font-weight: 500; }
.manifesto {
  background: #ece6da;
  color: #17131b;
}
.manifesto .section-kicker { color: #806027; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 10vw;
  align-items: start;
}
.manifesto-grid > div { max-width: 580px; color: #5c5660; font-family: "Cormorant Garamond", serif; font-size: 19px; line-height: 1.65; }
.dropcap::first-letter { float: left; color: #926f2f; font-size: 68px; line-height: .8; padding: 9px 10px 0 0; }

.archive { background: #0d0b11; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 55px; }
.feature-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, 320px); gap: 18px; }
.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198,161,91,.19);
  background: radial-gradient(circle at 50% 45%, rgba(94,58,136,.18), transparent 38%), #111017;
  padding: 30px;
  display: flex;
  align-items: end;
}
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,4,7,.9), transparent 62%); }
.card-large { grid-row: 1 / 3; }
.card-number { position: absolute; top: 24px; right: 25px; color: #655d68; font-size: 10px; }
.card-symbol {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(198,161,91,.52); font-family: serif; font-size: clamp(90px, 13vw, 180px);
  text-shadow: 0 0 60px rgba(94,58,136,.8);
  transform: translateY(-5%);
}
.feature-card:not(.card-large) .card-symbol { font-size: 100px; right: -55%; }
.card-content { position: relative; z-index: 2; max-width: 520px; }
.card-content p, .article-tag { color: var(--gold); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.card-content h3, .discipline-card h3, .article-grid h3 { margin: 8px 0; font-family: "Cormorant Garamond", serif; font-size: 34px; font-weight: 500; }
.card-content span { color: #8f8993; font-size: 12px; line-height: 1.7; }
.card-link {
  display: block;
  width: fit-content;
  margin-top: 14px;
  color: #d4b46f;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(198,161,91,.35);
  padding-bottom: 5px;
}
.card-link b { margin-left: 9px; }

.forbidden-book {
  position: relative;
  display: grid;
  grid-template-columns: 110px .72fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(198,161,91,.035) 1px, transparent 1px),
    #e7dfd1;
  background-size: 72px 100%;
  color: #17131b;
}
.forbidden-book::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -250px;
  top: -250px;
  border: 1px solid rgba(124,88,35,.16);
  border-radius: 50%;
}
.forbidden-index {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  border-right: 1px solid #c9bdab;
  color: #8d6d34;
}
.forbidden-index > span,
.forbidden-index small {
  font-size: 8px;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}
.forbidden-index strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 500;
}
.forbidden-index i { width: 1px; flex: 1; max-height: 150px; background: #bba98e; }
.book-visual { position: relative; z-index: 1; }
.book-cover {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: .72;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 28px;
  border: 1px solid #bd9b5b;
  outline: 1px solid rgba(189,155,91,.5);
  outline-offset: -12px;
  background:
    radial-gradient(circle at 50% 45%, rgba(116,69,141,.34), transparent 34%),
    linear-gradient(145deg, #211726, #0d0a10 68%);
  box-shadow: 18px 24px 45px rgba(35,25,31,.32);
  color: #d7b96f;
}
.book-cover::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  width: 1px;
  background: rgba(215,185,111,.35);
}
.book-cover > span { font-size: 23px; }
.book-cover > p {
  margin: 35px 0 5px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: .1em;
}
.book-cover > small { font-size: 8px; letter-spacing: .24em; }
.book-seal {
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  margin: auto;
  border: 1px solid #a9894e;
  border-radius: 50%;
  font-family: serif;
  font-size: 54px;
  box-shadow: 0 0 0 14px rgba(169,137,78,.08), 0 0 40px rgba(114,67,143,.4);
}
.book-cover em {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: #a28d69;
}
.book-caption {
  margin: 24px auto 0;
  text-align: center;
  color: #8a7e75;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.book-story { position: relative; z-index: 1; max-width: 720px; }
.book-story .section-kicker { color: #846326; }
.book-story h2 { font-size: clamp(45px, 4.6vw, 70px); }
.book-intro {
  margin: 28px 0 32px;
  color: #625b63;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.65;
}
.why-forbidden {
  padding-top: 25px;
  border-top: 1px solid #c8bcaa;
}
.why-forbidden h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 600;
}
.why-forbidden ul { list-style: none; padding: 0; margin: 0; }
.why-forbidden li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #d1c6b5;
}
.why-forbidden li > span {
  color: #9c7939;
  font-size: 9px;
  padding-top: 5px;
}
.why-forbidden li p { margin: 0; color: #625b63; font-size: 12px; line-height: 1.65; }
.why-forbidden li strong { color: #221c24; }
.truth-note {
  margin-top: 25px;
  padding: 20px 22px;
  border-left: 2px solid #9b7634;
  background: rgba(255,255,255,.3);
}
.truth-note span { color: #88672e; font-size: 8px; letter-spacing: .2em; }
.truth-note p { margin: 8px 0 0; color: #655e64; font-size: 11px; line-height: 1.7; }

.disciplines { background: #e8e1d4; color: #17131b; }
.centered { display: grid; justify-items: center; text-align: center; }
.centered > p:last-child { color: #6f6870; margin-top: 20px; }
.category-status {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -22px 0 24px;
  padding: 0 16px;
  border: 1px solid #c9bfad;
  color: #756c70;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.category-status strong { color: #7f5e24; font-weight: 600; }
.category-status button {
  border: 0;
  background: transparent;
  color: #7f5e24;
  font: inherit;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid #9c7939;
  padding: 4px 0;
}
.discipline-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c9bfad; border-left: 1px solid #c9bfad; }
.discipline-grid.filtered { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.discipline-card { min-height: 350px; padding: 38px; border-right: 1px solid #c9bfad; border-bottom: 1px solid #c9bfad; transition: background .25s, color .25s; }
.discipline-top { display: flex; align-items: center; justify-content: space-between; }
.discipline-top > span { color: #8f6a29; font-family: serif; font-size: 31px; }
.discipline-top small { color: #8d7e69; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.discipline-card h3 { font-size: 31px; margin-top: 38px; line-height: 1.05; }
.discipline-card p { color: #766e76; font-size: 12px; }
.discipline-card:hover { background: #1b1620; color: var(--paper); }
.discipline-card:hover p { color: #aaa2ac; }
.discipline-card details {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid #c9bfad;
}
.discipline-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5a5056;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.discipline-card summary::-webkit-details-marker { display: none; }
.discipline-card summary b {
  color: #9c772f;
  font-size: 17px;
  font-weight: 400;
  transition: transform .2s ease;
}
.discipline-card details[open] summary b { transform: rotate(45deg); }
.discipline-card details p {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.55;
}
.expedient-sheet { margin-top: 20px; }
.expedient-sheet > span {
  display: block;
  margin-bottom: 14px;
  color: #9c772f;
  font-size: 8px;
  letter-spacing: .18em;
}
.expedient-sheet dl { margin: 0; }
.expedient-sheet dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(156,119,47,.2);
}
.expedient-sheet dt {
  color: #5f555a;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.expedient-sheet dd {
  margin: 0;
  color: #756d74;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  line-height: 1.45;
}
.expedient-sheet blockquote {
  margin: 20px 0 0;
  padding-left: 14px;
  border-left: 2px solid #9c772f;
  color: #7d6c54;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
}
.discipline-card:hover .expedient-sheet dt,
.discipline-card:hover .expedient-sheet dd,
.discipline-card:hover .expedient-sheet blockquote { color: #aaa2ac; }
.discipline-card:hover .discipline-top small,
.discipline-card:hover summary { color: #aaa2ac; }
.discipline-card:hover details { border-color: #443b47; }

.chronicles { background: #09080c; }
.article-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 6vw; }
.article-main { display: grid; grid-template-columns: .8fr 1fr; align-items: center; gap: 38px; }
.moon-art {
  min-height: 450px; display: grid; place-items: center;
  border: 1px solid rgba(198,161,91,.17);
  background: radial-gradient(circle, rgba(102,62,142,.32), transparent 50%), linear-gradient(150deg,#15111b,#09080c);
}
.moon-art span { color: var(--gold-bright); font-size: 165px; filter: drop-shadow(0 0 28px rgba(198,161,91,.3)); }
.article-main h3 { font-size: 47px; line-height: 1; }
.article-main > div:last-child > p:not(.article-tag) { color: #8f8994; font-size: 13px; line-height: 1.8; }
.article-list { border-top: 1px solid #302b33; }
.article-list article { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 28px 0; border-bottom: 1px solid #302b33; }
.article-list > article > span { color: #5d5661; font-size: 10px; }
.article-list h3 { font-size: 25px; line-height: 1.08; }

.initiation {
  position: relative; overflow: hidden;
  padding: 120px 25px;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(96,53,132,.27), transparent 35%), #121017;
}
.initiation::before { content: ""; position: absolute; width: 700px; height: 700px; border: 1px solid rgba(198,161,91,.1); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.initiation > * { position: relative; z-index: 1; }
.initiation-symbol { color: var(--gold); font-size: 29px; margin-bottom: 22px; }
.initiation > p:not(.section-kicker) { color: #8e8792; font-size: 13px; margin: 25px auto; }
.signup-form { display: flex; justify-content: center; max-width: 600px; margin: 35px auto 18px; border: 1px solid rgba(198,161,91,.35); padding: 6px; }
.signup-form input { min-width: 0; flex: 1; background: transparent; border: 0; outline: 0; color: var(--paper); padding: 0 17px; }
.signup-form button { border: 0; background: var(--gold); color: #17121a; padding: 15px 22px; font-weight: 600; font-size: 11px; cursor: pointer; }
.initiation small { color: #5f5862; font-size: 9px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 35px;
  align-items: center;
  padding: 40px 6vw;
  border-top: 1px solid rgba(198,161,91,.16);
  color: #736c77;
  font-size: 10px;
}
footer .brand { color: var(--paper); }
footer div { display: flex; gap: 25px; }
footer a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .section { padding: 90px 24px; }
  .manifesto-grid, .article-grid { grid-template-columns: 1fr; gap: 45px; }
  .feature-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 380px); }
  .card-large { grid-row: auto; }
  .forbidden-book { grid-template-columns: 70px 1fr; }
  .book-story { grid-column: 2; }
  .forbidden-index { grid-row: 1 / 3; }
  .discipline-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-dropdown-menu { left: auto; right: 0; transform: none; }
  footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-header { gap: 12px; }
  nav { gap: 12px; }
  .nav-cta { display: none; }
  .nav-dropdown-menu {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    width: auto;
  }
  .section-heading { align-items: start; flex-direction: column; }
  .feature-grid { grid-template-rows: repeat(3, 330px); }
  .forbidden-book { grid-template-columns: 1fr; }
  .forbidden-index { display: none; }
  .book-story { grid-column: auto; }
  .book-cover { max-width: 330px; }
  .discipline-grid { grid-template-columns: 1fr; }
  .expedient-sheet dl > div { grid-template-columns: 1fr; gap: 5px; }
  .category-status { align-items: flex-start; flex-direction: column; padding: 14px 16px; }
  .article-main { grid-template-columns: 1fr; }
  .moon-art { min-height: 350px; }
  .signup-form { display: grid; gap: 6px; }
  .signup-form input { min-height: 48px; text-align: center; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
