
:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --font-geist-mono: "Courier New", Courier, monospace;
  --ink: #050607;
  --ink-soft: #0a0c0f;
  --ivory: #f2f0ea;
  --silver: #a9afb7;
  --silver-dim: #717780;
  --line: rgba(223, 226, 231, 0.16);
  --blue-black: #071225;
  --royal: #102d62;
  --royal-deep: #091a39;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.99) 0%, rgba(5, 6, 7, 0.93) 48%, rgba(7, 18, 37, 0.82) 100%),
    radial-gradient(circle at 81% 44%, #163d80 0%, #091b39 34%, #05080e 65%, #050607 82%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, 0.055) 50%, transparent 50.05%);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.15;
  pointer-events: none;
}

.ambient-one {
  width: 32rem;
  height: 32rem;
  right: -10rem;
  top: 10%;
  background: #315ea5;
}

.ambient-two {
  width: 20rem;
  height: 20rem;
  left: 18%;
  bottom: -12rem;
  background: #143d7a;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 7rem, 1500px);
  margin: 0 auto;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  width: fit-content;
}

.identity-mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(231, 233, 236, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.identity-name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  color: #a9adb3;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav a,
.contact-link {
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: #fff;
}

.contact-link {
  justify-self: end;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(232, 234, 237, 0.4);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.95fr);
  align-items: center;
  width: min(100% - 7rem, 1500px);
  min-height: calc(100svh - 9.6rem);
  margin: 0 auto;
  padding: 3rem 0 5.5rem;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: clamp(0rem, 4vw, 4.8rem);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.1rem;
  color: var(--silver);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.eyebrow-rule {
  width: 3.4rem;
  height: 1px;
  background: rgba(212, 217, 224, 0.34);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 8.2vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.77;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: 0.46em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239, 238, 233, 0.74);
}

.hero-statement {
  max-width: 37rem;
  margin: 2.75rem 0 0 0.5rem;
  color: #a9adb3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-style: italic;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2.35rem 0 0 0.5rem;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  min-width: 13.7rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(232, 234, 237, 0.25);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--ink);
}

.hero-actions p {
  margin: 0;
  color: #858b94;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.76rem;
  line-height: 1.8;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 35rem;
  perspective: 1100px;
}

.art-index {
  position: absolute;
  top: 3rem;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: #777e88;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.art-index span:first-child {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(230, 232, 235, 0.15);
}

.book-stage {
  position: relative;
  width: min(24vw, 21rem);
  min-width: 17rem;
  aspect-ratio: 0.69;
  transform: rotateY(-13deg) rotateX(2deg) rotateZ(1.2deg);
  transform-style: preserve-3d;
  animation: book-enter 900ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.book-shadow {
  position: absolute;
  inset: 18% -22% -9% -15%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(28px);
  transform: translateZ(-60px) rotateZ(-6deg);
}

.book-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 1.45rem 1.3rem;
  border: 1px solid rgba(226, 230, 235, 0.33);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 30%),
    linear-gradient(135deg, #11161c, #050607 66%, #0a1118);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 3rem 6rem rgba(0, 0, 0, 0.62);
  transform: translateZ(13px);
}

.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.08) 49%, transparent 63%);
  transform: translateX(-120%);
  animation: cover-glint 7s 1.5s ease-in-out infinite;
}

.board-pattern {
  position: absolute;
  right: -16%;
  bottom: -4%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 78%;
  aspect-ratio: 1;
  opacity: 0.11;
  transform: rotate(-11deg);
}

.board-pattern span {
  border: 1px solid rgba(224, 228, 233, 0.45);
}

.board-pattern span:nth-child(odd) {
  background: rgba(218, 223, 229, 0.36);
}

.book-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #9299a2;
  font-size: 0.49rem;
  letter-spacing: 0.25em;
}

.rook {
  position: relative;
  z-index: 2;
  margin-top: 3.2rem;
  color: #c5c9ce;
  font-family: Georgia, serif;
  font-size: clamp(3.4rem, 5vw, 5.3rem);
  line-height: 1;
  text-shadow: 0 0 2rem rgba(193, 203, 215, 0.17);
}

.book-title {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 3.8vw, 4rem);
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.book-title span {
  display: block;
}

.book-title span:last-child {
  margin-left: 0.35em;
  color: transparent;
  -webkit-text-stroke: 1px #aeb4bc;
}

.book-cover p {
  position: absolute;
  bottom: 1.5rem;
  left: 1.3rem;
  z-index: 2;
  margin: 0;
  color: #969ca5;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.62rem;
}

.book-spine {
  position: absolute;
  top: 0.6%;
  right: -1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1.1rem;
  height: 98.8%;
  padding: 1rem 0;
  border: 1px solid rgba(219, 223, 228, 0.22);
  background: #080b0f;
  color: #8f959e;
  font-size: 0.42rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  transform: rotateY(90deg);
  transform-origin: left center;
}

.hero-footer {
  position: absolute;
  right: 3.5rem;
  bottom: 2rem;
  left: 3.5rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #656b73;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.52rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-line {
  flex: 1;
  height: 1px;
  background: rgba(207, 213, 220, 0.11);
}

.author-section,
.work-section,
.extracts-section,
.creed-section,
.site-footer {
  position: relative;
}

.author-section,
.extracts-section {
  background:
    linear-gradient(rgba(255,255,255,0.93), rgba(255,255,255,0.93)),
    repeating-linear-gradient(90deg, transparent 0 6rem, rgba(10, 26, 54, 0.06) 6rem calc(6rem + 1px));
  color: #0a0c11;
}

.author-section {
  display: grid;
  grid-template-columns: 0.32fr 1.2fr 0.82fr;
  gap: clamp(2rem, 5vw, 7rem);
  min-height: 85vh;
  padding: clamp(7rem, 11vw, 11rem) max(3.5rem, calc((100vw - 1500px) / 2));
  overflow: hidden;
}

.author-section::after {
  content: "AUTHOR";
  position: absolute;
  right: -0.08em;
  bottom: -0.23em;
  color: rgba(10, 24, 51, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 22vw, 23rem);
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.section-index {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: #727983;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-index span:first-child {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(10, 25, 52, 0.2);
  color: #10151d;
}

.author-intro,
.author-copy,
.author-note {
  position: relative;
  z-index: 2;
}

.section-kicker {
  margin: 0 0 1.7rem;
  color: #4c5664;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.author-intro h2,
.extracts-heading-row h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.7vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.author-intro h2 em,
.creed-section h2 em {
  color: transparent;
  font-weight: 400;
  -webkit-text-stroke: 1px #384251;
}

.author-copy {
  align-self: center;
  padding-top: 4rem;
}

.author-copy > p:first-child {
  margin: 0;
  color: #333a44;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.8;
}

.author-copy > p:last-child {
  margin: 2rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(9, 25, 52, 0.14);
  color: #525a66;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 2;
}

.author-note {
  position: absolute;
  left: max(3.5rem, calc((100vw - 1500px) / 2));
  bottom: 3.5rem;
  margin: 0;
  color: #748091;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.work-section {
  min-height: 110vh;
  padding: clamp(7rem, 10vw, 10rem) max(3.5rem, calc((100vw - 1500px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 50%, rgba(39, 91, 171, 0.42), transparent 34%),
    linear-gradient(125deg, #020305 0%, #071126 42%, #102c5c 75%, #05070b 100%);
  color: #f5f6f8;
}

.work-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to right, black, transparent 78%);
  pointer-events: none;
}

.work-backdrop {
  position: absolute;
  top: 3%;
  right: -0.08em;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 19vw, 20rem);
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.08;
  -webkit-text-stroke: 1px #dce5f3;
  pointer-events: none;
  white-space: nowrap;
}

.section-index-dark {
  position: absolute;
  top: clamp(7rem, 10vw, 10rem);
  left: max(3.5rem, calc((100vw - 1500px) / 2));
  color: #77869a;
}

.section-index-dark span:first-child {
  border-color: rgba(225, 231, 240, 0.22);
  color: #c3ccd8;
}

.work-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(25rem, 1fr) minmax(25rem, 0.8fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 11rem);
  width: min(100% - 8rem, 1260px);
  min-height: 78vh;
  margin: 2rem auto 0;
}

.work-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 42rem;
  isolation: isolate;
}

.work-visual::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: #1b4f9d;
  filter: blur(105px);
  opacity: 0.35;
}

.work-orbit {
  position: absolute;
  border: 1px solid rgba(220, 229, 241, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: min(37vw, 34rem);
  height: min(37vw, 34rem);
}

.orbit-two {
  width: min(28vw, 25rem);
  height: min(28vw, 25rem);
}

.work-card {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(27vw, 20rem);
  min-width: 18rem;
  aspect-ratio: 0.68;
  padding: 1.6rem;
  border: 1px solid rgba(230, 234, 240, 0.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 23%),
    linear-gradient(155deg, #163d7a, #06090f 47%, #0c2450 100%);
  box-shadow: 0 4rem 7rem rgba(0,0,0,0.62);
  transform: rotate(-3deg);
  transition: transform 600ms cubic-bezier(0.2,0.8,0.2,1);
}

.work-card:hover {
  transform: rotate(0deg) translateY(-0.75rem);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background-image: linear-gradient(rgba(230,236,244,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(230,236,244,0.1) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: linear-gradient(transparent, black);
}

.work-card-number,
.work-card small {
  position: relative;
  z-index: 2;
  color: #aeb9c8;
  font-size: 0.5rem;
  letter-spacing: 0.24em;
}

.work-card-rook {
  position: absolute;
  top: 26%;
  right: 1.5rem;
  z-index: 2;
  color: rgba(236, 240, 245, 0.76);
  font-family: Georgia, serif;
  font-size: 4rem;
}

.work-card > div {
  position: relative;
  z-index: 2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 4vw, 4.4rem);
  letter-spacing: -0.08em;
  line-height: 0.77;
}

.work-card > div span {
  display: block;
}

.work-card > div span:last-child {
  margin-left: 0.32em;
  color: transparent;
  -webkit-text-stroke: 1px #ccd4df;
}

.work-copy {
  position: relative;
  z-index: 2;
}

.section-kicker-dark {
  color: #93a1b5;
}

.work-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 7vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.work-question {
  margin: 1.3rem 0 2.4rem;
  color: #b9c5d6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-style: italic;
}

.work-description {
  max-width: 34rem;
  margin: 0;
  color: #a7b0be;
  font-size: 0.92rem;
  line-height: 1.85;
}

.work-description-ar {
  margin-top: 1.5rem;
  color: #919dac;
  font-family: Tahoma, Arial, sans-serif;
  line-height: 2;
}

.work-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.6rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(222, 229, 240, 0.15);
  border-bottom: 1px solid rgba(222, 229, 240, 0.15);
}

.work-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.work-meta dt {
  color: #738096;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.work-meta dd {
  margin: 0;
  color: #d7dce4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(235, 239, 245, 0.35);
  color: #e7ebf1;
  font-size: 0.62rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.extracts-section {
  min-height: 110vh;
  padding: clamp(7rem, 10vw, 10rem) max(3.5rem, calc((100vw - 1500px) / 2));
}

.extracts-heading-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: end;
  gap: 4rem;
  margin: 1rem auto 6rem;
  padding-left: 17%;
}

.extracts-heading-row .section-kicker {
  align-self: start;
  margin-top: 1rem;
}

.extract-list {
  border-top: 1px solid rgba(8, 25, 52, 0.18);
}

.extract-card {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.8fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: 16rem;
  padding: 3.4rem 0;
  border-bottom: 1px solid rgba(8, 25, 52, 0.18);
  transition: padding 300ms ease, background 300ms ease;
}

.extract-card:hover {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  background: rgba(19, 54, 108, 0.035);
}

.extract-card header {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: #6c7582;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.extract-card header span:last-child {
  color: #192334;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
}

.extract-card blockquote {
  margin: 0;
  color: #111722;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.45;
}

.extract-card > p {
  margin: 0;
  color: #586271;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 2;
}

.extract-card-featured blockquote {
  color: #12366f;
}

.creed-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 95vh;
  padding: 8rem 8vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(34, 83, 166, 0.48), transparent 34%),
    linear-gradient(145deg, #030405, #07152d 52%, #0e2b60 100%);
  text-align: center;
}

.creed-section::before,
.creed-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(225, 232, 241, 0.1);
  border-radius: 50%;
}

.creed-section::before {
  width: 55vw;
  height: 55vw;
}

.creed-section::after {
  width: 38vw;
  height: 38vw;
}

.creed-mark {
  position: absolute;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16rem, 38vw, 36rem);
  letter-spacing: -0.13em;
  opacity: 0.06;
  -webkit-text-stroke: 1px white;
}

.creed-section > * {
  position: relative;
  z-index: 2;
}

.creed-section h2 {
  max-width: 65rem;
  margin: 0;
  color: #f1f3f6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.creed-section h2 em {
  display: block;
  margin-top: 0.15em;
  -webkit-text-stroke-color: #a9b9d1;
}

.creed-ar {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 3.5rem;
  color: #aeb9c9;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.9;
}

.creed-ar span {
  color: #e4e9f0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.1fr;
  gap: clamp(3rem, 8vw, 10rem);
  min-height: 70vh;
  padding: clamp(6rem, 9vw, 9rem) max(3.5rem, calc((100vw - 1500px) / 2)) 3rem;
  background: #030405;
  color: #eef1f5;
}

.footer-heading > p,
.footer-links > p {
  margin: 0 0 2.2rem;
  color: #626b78;
  font-size: 0.53rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
}

.footer-heading > span {
  display: block;
  margin-top: 2rem;
  color: #8c95a3;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-links {
  align-self: start;
}

.footer-links a {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(226,231,238,0.13);
  color: #abb4c1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  transition: color 180ms ease, padding 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  padding-left: 0.5rem;
  color: white;
}

.footer-signoff {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-signoff blockquote {
  margin: 0;
  color: #aab6c8;
  font-family: Tahoma, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.6rem);
  line-height: 1.7;
}

.footer-signoff > div {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(225,230,237,0.14);
  color: #626a75;
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-signoff a {
  color: #aeb7c4;
}

@keyframes book-enter {
  from {
    opacity: 0;
    transform: translateY(3rem) rotateY(-20deg) rotateX(3deg) rotateZ(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateY(-13deg) rotateX(2deg) rotateZ(1.2deg);
  }
}

@keyframes cover-glint {
  0%, 70%, 100% { transform: translateX(-120%); }
  84% { transform: translateX(120%); }
}

@media (max-width: 980px) {
  .site-header,
  .hero-grid {
    width: min(100% - 3rem, 900px);
  }

  .primary-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(4rem, 15vw, 7.8rem);
  }

  .hero-art {
    min-height: 38rem;
  }

  .book-stage {
    width: min(55vw, 21rem);
  }

  .art-index {
    right: 1rem;
  }

  .author-section {
    grid-template-columns: 0.22fr 1fr;
    gap: 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .author-copy {
    grid-column: 2;
    max-width: 42rem;
    padding-top: 0;
  }

  .author-note {
    left: 3rem;
  }

  .work-section,
  .extracts-section {
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .section-index-dark {
    left: 3rem;
  }

  .work-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    margin-top: 5rem;
  }

  .work-visual {
    min-height: 36rem;
  }

  .work-card {
    width: min(40vw, 19rem);
  }

  .orbit-one {
    width: 30rem;
    height: 30rem;
  }

  .orbit-two {
    width: 22rem;
    height: 22rem;
  }

  .work-copy {
    max-width: 42rem;
    margin: 0 auto;
  }

  .extracts-heading-row {
    padding-left: 11%;
  }

  .extract-card {
    grid-template-columns: 0.28fr 1fr;
  }

  .extract-card > p {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .footer-signoff {
    grid-column: 1 / -1;
    min-height: 16rem;
    padding-top: 3rem;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-grid {
    width: calc(100% - 2rem);
  }

  .site-header {
    padding: 1.2rem 0;
  }

  .identity-name {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding: 4.5rem 0 7rem;
  }

  .eyebrow-row {
    margin-bottom: 1.6rem;
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17.5vw, 5.6rem);
  }

  .hero h1 span:last-child {
    margin-left: 0.16em;
  }

  .hero-statement br {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .button-primary {
    width: 100%;
  }

  .hero-art {
    min-height: 31rem;
  }

  .book-stage {
    width: 70vw;
    min-width: 15.8rem;
  }

  .art-index {
    top: 1rem;
    right: 0;
  }

  .hero-footer {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .hero-footer span:first-child {
    display: none;
  }

  .author-section,
  .work-section,
  .extracts-section,
  .site-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .author-section {
    display: block;
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-index {
    flex-direction: row;
    align-items: center;
    margin-bottom: 3rem;
  }

  .section-index span:first-child {
    width: 2.15rem;
    height: 2.15rem;
  }

  .author-intro h2,
  .extracts-heading-row h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .author-intro h2 br {
    display: none;
  }

  .author-copy {
    margin-top: 3rem;
  }

  .author-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(9, 25, 52, 0.14);
  }

  .work-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-index-dark {
    position: relative;
    top: auto;
    left: auto;
  }

  .work-layout {
    margin-top: 0;
  }

  .work-visual {
    min-height: 30rem;
  }

  .work-card {
    width: 68vw;
    min-width: 15.5rem;
    max-width: 18rem;
  }

  .orbit-one {
    width: 90vw;
    height: 90vw;
    max-width: 26rem;
    max-height: 26rem;
  }

  .orbit-two {
    width: 65vw;
    height: 65vw;
    max-width: 18rem;
    max-height: 18rem;
  }

  .work-copy h2 {
    font-size: clamp(3.8rem, 19vw, 5.6rem);
  }

  .work-meta {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .extracts-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .extracts-heading-row {
    display: block;
    margin-bottom: 3.5rem;
    padding-left: 0;
  }

  .extract-card {
    display: block;
    min-height: auto;
    padding: 2.7rem 0;
  }

  .extract-card:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .extract-card header {
    margin-bottom: 2rem;
  }

  .extract-card blockquote {
    font-size: 1.45rem;
  }

  .extract-card > p {
    margin-top: 1.5rem;
  }

  .creed-section {
    min-height: 82vh;
    padding: 6rem 1.2rem;
  }

  .creed-section::before {
    width: 125vw;
    height: 125vw;
  }

  .creed-section::after {
    width: 82vw;
    height: 82vw;
  }

  .creed-section h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .site-footer {
    display: block;
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .footer-links {
    margin-top: 5rem;
  }

  .footer-signoff {
    min-height: 19rem;
    margin-top: 4rem;
    padding-top: 0;
  }

  .footer-signoff > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
