:root {
  --ink: #03070b;
  --ink-deep: #020407;
  --ink-soft: #071019;
  --panel: #0a131c;
  --panel-raised: #0d1822;
  --gold: #bd8f3e;
  --gold-bright: #e4c477;
  --gold-pale: #f2dca8;
  --gold-dim: rgba(189, 143, 62, 0.3);
  --ivory: #f4ead6;
  --text: rgba(244, 234, 214, 0.84);
  --muted: rgba(244, 234, 214, 0.61);
  --faint: rgba(244, 234, 214, 0.53);
  --line: rgba(189, 143, 62, 0.24);
  --line-soft: rgba(244, 234, 214, 0.1);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --display: Baskerville, "Baskerville Old Face", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --narrow: 790px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 26px);
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.consent-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

::selection {
  color: #110d05;
  background: var(--gold-bright);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ivory);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
}

.registered-mark {
  margin-left: 0.08em;
  font-size: 0.28em;
  line-height: 0;
  vertical-align: super;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(calc(100% - 64px), var(--narrow));
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1500;
  padding: 11px 16px;
  color: #100b04;
  background: var(--gold-bright);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-170%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  border-color: #d7b265;
  color: #120d05;
  background: linear-gradient(135deg, #f0d59d 0%, #bd8f3e 100%);
  box-shadow: 0 12px 34px rgba(189, 143, 62, 0.14);
}

.button--gold:hover {
  background: linear-gradient(135deg, #f7e4b8 0%, #cda554 100%);
}

.button--outline {
  border-color: rgba(228, 196, 119, 0.45);
  color: var(--gold-pale);
  background: rgba(189, 143, 62, 0.035);
}

.button--outline:hover {
  border-color: var(--gold-bright);
  background: rgba(189, 143, 62, 0.1);
}

.button--quiet {
  border-color: var(--line-soft);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.button--quiet:hover {
  color: var(--ivory);
  border-color: rgba(244, 234, 214, 0.25);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 800;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.legal-page .site-header,
.error-page .site-header {
  border-bottom-color: var(--line-soft);
  background: rgba(3, 7, 11, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  width: min(calc(100% - 64px), var(--max));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-pale);
}

.wordmark__seal {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(228, 196, 119, 0.5);
}

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

.wordmark__text {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.05;
  text-transform: uppercase;
}

.wordmark__text small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav > a:not(.primary-nav__cta) {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.primary-nav > a:not(.primary-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.primary-nav__cta):hover {
  color: var(--gold-pale);
}

.primary-nav > a:not(.primary-nav__cta):hover::after {
  transform: scaleX(1);
}

.primary-nav__cta {
  padding: 10px 14px;
  border: 1px solid rgba(228, 196, 119, 0.45);
  color: var(--gold-pale);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.primary-nav__cta:hover {
  border-color: var(--gold-bright);
  background: rgba(189, 143, 62, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--gold-pale);
  transition: transform 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  min-height: min(100svh, 820px);
  overflow: hidden;
  align-items: flex-start;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 46%, rgba(189, 143, 62, 0.12), transparent 27%),
    linear-gradient(90deg, rgba(2, 4, 7, 0.12), rgba(2, 4, 7, 0.02) 45%, rgba(2, 4, 7, 0.22)),
    var(--ink-deep);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 4, 7, 0.08), transparent 66%, var(--ink) 100%);
}

.hero::after {
  right: -160px;
  bottom: -290px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(189, 143, 62, 0.11);
  border-radius: 50%;
  box-shadow: inset 0 0 0 100px rgba(189, 143, 62, 0.015), inset 0 0 0 101px rgba(189, 143, 62, 0.07);
}

.hero__texture {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("../img/brand/hero-pattern.webp") center / cover no-repeat;
  opacity: 0.52;
  mix-blend-mode: screen;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(370px, 0.72fr);
  gap: clamp(52px, 6vw, 92px);
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 90px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 760px;
  text-align: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
  white-space: nowrap;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  width: clamp(28px, 5vw, 52px);
  height: 1px;
  flex: 0 0 clamp(28px, 5vw, 52px);
  content: "";
}

.hero__eyebrow::before {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.hero__eyebrow::after {
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}

.hero h1 {
  --hero-title-width: min(790px, calc(100vw - 64px));

  width: var(--hero-title-width);
  margin-bottom: 22px;
  margin-left: calc((100% - var(--hero-title-width)) / 2);
  justify-self: start;
  color: var(--gold-pale);
  font-size: clamp(72px, 6.2vw, 96px);
  letter-spacing: 0.015em;
  line-height: 0.86;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 0.235em;
  font-weight: 500;
  letter-spacing: 0.43em;
  line-height: 1;
}

@supports (-webkit-background-clip: text) {
  .hero h1 {
    color: transparent;
    background: linear-gradient(180deg, #fff0c7 0%, #d1a650 58%, #8b642b 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .hero h1 span {
    color: var(--gold-bright);
    background: none;
    -webkit-text-fill-color: var(--gold-bright);
  }
}

.hero__roles {
  display: flex;
  margin-bottom: 35px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__roles i,
.book-feature__meta i {
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero__lead {
  max-width: 570px;
  margin: 0 auto 12px;
  color: var(--ivory);
  font-size: clamp(24px, 2.1vw, 32px);
  font-style: italic;
  line-height: 1.25;
}

.hero__intro {
  max-width: 610px;
  margin: 0 auto 31px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions,
.book-feature__actions,
.error-view__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  justify-content: center;
}

.hero__catalogue {
  display: flex;
  margin-top: 40px;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__catalogue i {
  width: 54px;
  height: 1px;
  background: var(--line);
}

.portrait-stage {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.portrait-stage__emblem {
  position: absolute;
  width: min(700px, 54vw);
  height: auto;
  max-width: none;
  opacity: 0.22;
  filter: saturate(0.8) contrast(1.1);
  -webkit-mask-image: radial-gradient(circle, #000 45%, transparent 73%);
  mask-image: radial-gradient(circle, #000 45%, transparent 73%);
  animation: emblem-breathe 10s ease-in-out infinite;
}

@keyframes emblem-breathe {
  0%, 100% { opacity: 0.17; transform: scale(0.98); }
  50% { opacity: 0.25; transform: scale(1.015); }
}

.author-portrait {
  position: relative;
  z-index: 2;
  width: min(355px, 85%);
  margin: 0;
}

.author-portrait::before {
  position: absolute;
  z-index: -1;
  content: "";
}

.author-portrait::before {
  top: -22px;
  right: -22px;
  bottom: 70px;
  left: 22px;
  border: 1px solid var(--line);
}

.author-portrait__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(228, 196, 119, 0.42);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.author-portrait__frame::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 55px rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.author-portrait__frame img {
  width: 100%;
  aspect-ratio: 476 / 516;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.04);
}

.author-portrait figcaption {
  position: relative;
  width: calc(100% - 28px);
  margin: -1px auto 0;
  padding: 15px 18px 16px;
  border: 1px solid var(--line);
  border-top: 0;
  text-align: center;
  background: rgba(3, 7, 11, 0.86);
  backdrop-filter: blur(12px);
}

.author-portrait figcaption strong,
.author-portrait figcaption span {
  display: block;
}

.author-portrait figcaption strong {
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.author-portrait figcaption span {
  margin-top: 3px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll span {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: var(--line);
}

.hero__scroll span::after {
  position: absolute;
  top: -12px;
  left: 0;
  width: 1px;
  height: 12px;
  content: "";
  background: var(--gold-bright);
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  70%, 100% { transform: translateY(46px); }
}

/* Shared sections */
.section {
  position: relative;
  padding: 140px 0;
}

.section-heading {
  margin-bottom: 72px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.6vw, 68px);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.75fr);
  gap: 60px;
  align-items: end;
}

.section-heading--split > p {
  max-width: 510px;
  margin: 0 0 6px;
  padding-left: 30px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 20px;
}

.section-heading--centred {
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 88px;
  margin-left: auto;
  text-align: center;
}

.section-heading--centred::after {
  display: block;
  width: 140px;
  height: 1px;
  margin: 35px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading--centred > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
}

/* About */
.about {
  background:
    radial-gradient(circle at 85% 30%, rgba(189, 143, 62, 0.055), transparent 26%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 50%, var(--ink) 100%);
}

.about::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.about__heading {
  max-width: 850px;
}

.about__story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.72fr);
  gap: clamp(55px, 8vw, 115px);
  align-items: start;
}

.about__prose {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.about__prose .lead-in {
  color: var(--ivory);
  font-size: 26px;
  font-style: italic;
  line-height: 1.42;
}

.about__prose a,
.legal__content a {
  color: var(--gold-pale);
  border-bottom: 1px solid var(--line);
  transition: border-color 180ms ease;
}

.about__prose a:hover,
.legal__content a:hover {
  border-color: var(--gold-bright);
}

.about__aside > p {
  max-width: 510px;
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 20px;
}

.about__story blockquote {
  position: relative;
  margin: 78px 0 0;
  padding: 44px 38px 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.quote-ornament {
  position: absolute;
  z-index: 1;
  left: 50%;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--ink-soft);
  transform: translateX(-50%) rotate(45deg);
}

.quote-ornament--open {
  top: -16px;
}

.quote-ornament--close {
  bottom: -16px;
}

.quote-ornament span {
  display: flex;
  width: 31px;
  height: 31px;
  padding-top: 5px;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 23px;
  font-style: normal;
  line-height: 1;
  transform: rotate(-45deg);
}

.about__story blockquote p {
  margin-bottom: 14px;
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 34px;
  font-style: italic;
  line-height: 1.25;
}

.about__story blockquote footer {
  color: var(--faint);
  font-size: 16px;
}

.author-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.author-pillars article {
  position: relative;
  min-height: 310px;
  padding: 45px 42px;
  overflow: hidden;
}

.author-pillars article + article {
  border-left: 1px solid var(--line);
}

.author-pillars article > span {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(228, 196, 119, 0.11);
  font-family: var(--display);
  font-size: 74px;
  line-height: 1;
}

.author-pillars article::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(189, 143, 62, 0.07);
  border-radius: 50%;
  content: "";
  transition: transform 320ms ease, border-color 320ms ease;
}

.author-pillars article:hover::after {
  border-color: rgba(189, 143, 62, 0.2);
  transform: scale(1.3);
}

.author-pillars h3 {
  position: relative;
  margin: 60px 0 21px;
  font-size: 30px;
}

.author-pillars h3::before {
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 22px;
  content: "";
  background: var(--gold);
}

.author-pillars p {
  position: relative;
  max-width: 320px;
  color: var(--muted);
  font-size: 16px;
}

/* Books */
.books {
  background:
    radial-gradient(circle at 50% 10%, rgba(189, 143, 62, 0.07), transparent 26%),
    var(--ink-deep);
}

.turnings-plate {
  position: relative;
  margin: -12px 0 96px;
  padding: 9px;
  border: 1px solid rgba(189, 143, 62, 0.32);
  background: #020509;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.46), 0 0 70px rgba(189, 143, 62, 0.035);
}

.turnings-plate::before,
.turnings-plate::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 32px;
  height: 1px;
  content: "";
  background: var(--gold);
  pointer-events: none;
}

.turnings-plate::before {
  left: -17px;
}

.turnings-plate::after {
  right: -17px;
}

.turnings-plate a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(228, 196, 119, 0.12);
  cursor: zoom-in;
}

.turnings-plate__action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(228, 196, 119, 0.32);
  color: var(--gold-pale);
  background: rgba(2, 5, 9, 0.88);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.turnings-plate img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.9) contrast(1.025);
  transition: filter 240ms ease;
}

.turnings-plate a:hover img {
  filter: saturate(1) contrast(1.045) brightness(1.025);
}

.book-feature-grid {
  display: grid;
  gap: 84px;
}

.book-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.77fr) minmax(0, 1.2fr);
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.018), transparent 40%),
    rgba(7, 13, 19, 0.76);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.book-feature--reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.77fr);
}

.book-feature::after {
  position: absolute;
  z-index: 0;
  right: -220px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(189, 143, 62, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 90px rgba(189, 143, 62, 0.012), inset 0 0 0 91px rgba(189, 143, 62, 0.05);
}

.book-feature__visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100%;
  padding: 70px 44px;
  overflow: hidden;
  place-items: center;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(189, 143, 62, 0.15), transparent 48%),
    linear-gradient(180deg, rgba(189, 143, 62, 0.035), rgba(0, 0, 0, 0.15));
}

.book-feature__visual::before,
.book-feature__visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.book-feature__visual::before {
  width: 440px;
  height: 440px;
  border: 1px solid rgba(189, 143, 62, 0.13);
  border-radius: 50%;
}

.book-feature__visual::after {
  width: 330px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.book-feature--reverse .book-feature__visual {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.book-cover {
  position: relative;
  z-index: 2;
  width: min(245px, 75%);
  perspective: 1000px;
}

.book-cover::before {
  position: absolute;
  z-index: -1;
  top: 3%;
  right: -8px;
  bottom: 3%;
  width: 16px;
  border: 1px solid rgba(228, 196, 119, 0.36);
  border-left: 0;
  content: "";
  background: linear-gradient(90deg, #22170a, #090705);
  transform: skewY(-1deg);
}

.book-cover img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(228, 196, 119, 0.38);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.62), 0 0 35px rgba(189, 143, 62, 0.08);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.book-feature:hover .book-cover img {
  transform: translateY(-5px) rotateY(-2deg);
  box-shadow: 8px 42px 80px rgba(0, 0, 0, 0.65), 0 0 50px rgba(189, 143, 62, 0.12);
}

.book-cover--founder {
  width: min(255px, 78%);
}

.book-status {
  position: absolute;
  z-index: 4;
  top: 25px;
  left: 24px;
  padding: 7px 10px;
  border: 1px solid;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.book-status--available {
  border-color: rgba(205, 165, 84, 0.55);
  color: var(--gold-pale);
  background: rgba(189, 143, 62, 0.08);
}

.book-status--forthcoming {
  border-color: var(--line-soft);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.book-number {
  position: absolute;
  right: 20px;
  bottom: 12px;
  color: rgba(228, 196, 119, 0.09);
  font-family: var(--display);
  font-size: 150px;
  line-height: 0.8;
}

.book-feature__copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 690px;
  padding: clamp(60px, 7vw, 92px);
  flex-direction: column;
  justify-content: center;
}

.book-feature--reverse .book-feature__copy {
  grid-column: 1;
  grid-row: 1;
}

.book-feature__meta {
  display: flex;
  margin-bottom: 26px;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-feature h3 {
  margin-bottom: 10px;
  font-size: clamp(42px, 4vw, 64px);
  letter-spacing: -0.02em;
}

.book-feature__kicker {
  margin-bottom: 27px;
  color: var(--gold-pale);
  font-size: 20px;
  font-style: italic;
}

.book-feature__publication,
.future-book__publication {
  margin-bottom: 24px;
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book-feature blockquote {
  margin-bottom: 25px;
  padding: 15px 0 15px 24px;
  border-left: 1px solid var(--gold);
  color: var(--ivory);
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.35;
}

.book-feature__doctrine {
  max-width: 620px;
  margin: -6px 0 22px;
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
}

.book-feature__summary {
  max-width: 620px;
  margin-bottom: 31px;
  color: var(--muted);
}

.book-feature__actions {
  align-items: flex-start;
}

.book-feature__cta-group {
  display: grid;
  width: max-content;
  max-width: 100%;
}

.edition-menu {
  position: relative;
  z-index: 10;
}

.edition-menu summary {
  list-style: none;
}

.edition-menu summary::-webkit-details-marker {
  display: none;
}

.edition-menu[open] summary span {
  transform: rotate(45deg);
}

.edition-menu summary span {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 0.7;
  transition: transform 180ms ease;
}

.edition-menu__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 100%;
  min-width: 210px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.62);
  background: #09111a;
}

.edition-menu__list a {
  display: flex;
  padding: 12px 15px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.edition-menu__list a + a {
  border-top: 1px solid var(--line-soft);
}

.edition-menu__list a:hover {
  color: var(--gold-pale);
  background: rgba(189, 143, 62, 0.08);
}

.book-feature__secondary-link {
  display: flex;
  width: auto;
  max-width: none;
  margin-top: 32px;
  padding-bottom: 7px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--gold-pale);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 180ms ease;
}

.book-feature__secondary-link:hover {
  border-color: var(--gold-bright);
}

.book-feature__secondary-link i {
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
}

.book-feature__note {
  margin-top: 25px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.future-books {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.future-book {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 460px;
  padding: 46px 45px;
  align-items: start;
  gap: 34px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.014);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.future-book:hover {
  border-color: var(--line);
  background: rgba(189, 143, 62, 0.03);
  transform: translateY(-3px);
}

.future-book__mark {
  position: relative;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-top: 28px;
}

.future-book__mark::before,
.future-book__mark::after {
  position: absolute;
  content: "";
  background: var(--line);
}

.future-book__mark::before {
  width: 144px;
  height: 1px;
}

.future-book__mark::after {
  width: 1px;
  height: 144px;
}

.future-book__mark span {
  position: relative;
  z-index: 2;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 38px;
}

.future-book__mark i {
  position: absolute;
  z-index: 1;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(189, 143, 62, 0.13);
  border-radius: 50%;
}

.future-book__content {
  min-width: 0;
}

.future-book__meta {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-book h3 {
  margin-bottom: 15px;
  font-size: 31px;
}

.future-book__publication {
  margin-bottom: 22px;
}

.future-book blockquote {
  margin-bottom: 20px;
  padding-left: 18px;
  border-left: 1px solid var(--gold);
  color: var(--ivory);
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
}

.future-book__summary {
  color: var(--muted);
  font-size: 15px;
}

.future-book__doctrine {
  margin-top: 20px;
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
}

/* Notes and social */
.notes {
  background:
    radial-gradient(circle at 20% 45%, rgba(189, 143, 62, 0.065), transparent 28%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
}

.notes__grid {
  display: block;
}

.notes__feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  padding: 58px 64px;
  align-items: center;
  gap: clamp(55px, 8vw, 125px);
  border: 1px solid var(--line);
  background: rgba(3, 7, 11, 0.72);
}

.notes__feature h2 {
  max-width: 500px;
  font-size: clamp(40px, 4vw, 60px);
}

.notes__feature-body {
  max-width: 570px;
}

.notes__feature-body p {
  margin-bottom: 30px;
  color: var(--muted);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.social-links--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-links > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 115px;
  padding: 25px 30px;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.social-links > a:hover {
  background: rgba(189, 143, 62, 0.04);
}

.social-links > a > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 650;
}

.social-links__icon svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-links__icon--amazon svg text {
  fill: currentColor;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.social-links small,
.social-links strong {
  display: block;
}

.social-links small {
  margin-bottom: 2px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-links strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.social-links > a > i {
  color: var(--gold);
  font-size: 17px;
  font-style: normal;
}

/* Closing */
.closing {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 110px 0;
  overflow: hidden;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(189, 143, 62, 0.08), transparent 34%),
    var(--ink-deep);
}

.closing::before,
.closing::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.closing::before { top: 0; }
.closing::after { bottom: 0; }

.closing__emblem {
  position: absolute;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(189, 143, 62, 0.075);
  border-radius: 50%;
}

.closing__emblem::before,
.closing__emblem::after {
  position: absolute;
  content: "";
}

.closing__emblem::before {
  inset: 74px;
  border: 1px solid rgba(189, 143, 62, 0.08);
  border-radius: 50%;
}

.closing__emblem::after {
  top: 50%;
  left: -60px;
  width: 610px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.closing .container {
  position: relative;
  z-index: 2;
}

.closing h2 {
  margin-bottom: 31px;
  font-size: clamp(45px, 5.4vw, 78px);
  line-height: 1.03;
}

.closing a {
  display: inline-flex;
  padding-bottom: 7px;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--gold-pale);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  padding: 80px 0 28px;
  background: #020407;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) minmax(160px, 0.55fr) minmax(160px, 0.55fr);
  gap: 70px;
  padding-bottom: 65px;
}

.wordmark--footer {
  margin-bottom: 23px;
}

.site-footer__brand > p {
  max-width: 480px;
  color: var(--faint);
  font-size: 15px;
}

.site-footer__nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__nav p {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__nav a {
  width: fit-content;
  color: var(--muted);
  font-size: 15px;
  transition: color 180ms ease;
}

.site-footer__nav a:hover {
  color: var(--gold-pale);
}

.site-footer__follow a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.site-footer__follow-icon {
  display: inline-grid;
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  place-items: center;
  color: var(--gold-bright);
  transition: color 180ms ease;
}

.site-footer__follow-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-footer__follow-icon--amazon svg text {
  fill: currentColor;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.site-footer__follow a:hover .site-footer__follow-icon {
  color: var(--gold-pale);
}

.site-footer__bottom {
  display: flex;
  padding-top: 25px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer__bottom a,
.site-footer__bottom button {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color 180ms ease;
}

.site-footer__bottom a:hover,
.site-footer__bottom button:hover {
  color: var(--gold-pale);
}

/* Consent */
.consent-banner {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 27px 28px;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(228, 196, 119, 0.36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.72);
  background: rgba(5, 10, 15, 0.97);
  backdrop-filter: blur(18px);
}

.consent-banner__mark {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

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

.consent-banner .eyebrow {
  margin-bottom: 5px;
  font-size: 8px;
}

.consent-banner h2 {
  margin-bottom: 4px;
  font-size: 23px;
}

.consent-banner__copy > p:not(.eyebrow) {
  display: inline;
  color: var(--muted);
  font-size: 13px;
}

.consent-banner__copy > a {
  margin-left: 7px;
  color: var(--gold-pale);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}

.consent-banner__actions,
.consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.consent-banner .button,
.consent-modal .button {
  min-height: 42px;
  padding: 10px 13px;
  font-size: 8px;
}

.consent-modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  padding: 28px;
  overflow-y: auto;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(9px);
}

.consent-modal__panel {
  position: relative;
  width: min(100%, 690px);
  padding: 52px;
  border: 1px solid rgba(228, 196, 119, 0.38);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 100% 0%, rgba(189, 143, 62, 0.08), transparent 31%),
    #071018;
}

.consent-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 22px;
}

.consent-modal h2 {
  margin-bottom: 16px;
  font-size: 40px;
}

.consent-modal__intro {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
}

.consent-choice {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 23px 0;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line-soft);
}

.consent-choice:last-of-type {
  border-bottom: 1px solid var(--line-soft);
}

.consent-choice h3 {
  margin-bottom: 5px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consent-choice p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.consent-choice__status {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consent-switch {
  position: relative;
  display: block;
  width: 52px;
  height: 28px;
  cursor: pointer;
}

.consent-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-switch > span:last-child {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 234, 214, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.consent-switch > span:last-child::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background: var(--muted);
  transition: transform 180ms ease, background-color 180ms ease;
}

.consent-switch input:checked + span {
  border-color: var(--gold-bright);
  background: rgba(189, 143, 62, 0.16);
}

.consent-switch input:checked + span::after {
  background: var(--gold-bright);
  transform: translateX(24px);
}

.consent-switch input:focus-visible + span {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.consent-switch.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.consent-modal__actions {
  margin-top: 28px;
}

.consent-modal__legal {
  margin-top: 20px;
  margin-bottom: 0;
  text-align: right;
  color: var(--faint);
  font-size: 13px;
}

.consent-modal__legal a {
  color: var(--gold-pale);
  border-bottom: 1px solid var(--line);
}

/* Legal */
.legal {
  min-height: 100vh;
  background: var(--ink);
}

.legal-hero {
  position: relative;
  padding: calc(var(--header-height) + 100px) 0 95px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(3, 7, 11, 0.3), var(--ink)),
    url("../img/brand/hero-pattern.webp") center / cover no-repeat;
}

.legal-hero::after {
  position: absolute;
  top: 50%;
  right: -220px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(189, 143, 62, 0.11);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.legal-hero .container {
  position: relative;
  z-index: 2;
}

.legal-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(52px, 6vw, 82px);
}

.legal-hero p:not(.eyebrow):not(.legal-hero__date) {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}

.legal-hero__date {
  margin-top: 25px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal__layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 770px);
  padding-top: 100px;
  padding-bottom: 130px;
  justify-content: space-between;
  gap: 90px;
}

.legal__contents {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  display: grid;
  height: fit-content;
  align-content: start;
  gap: 9px;
}

.legal__contents p {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal__contents a {
  padding: 8px 0;
  color: var(--faint);
  font-size: 14px;
  transition: color 180ms ease;
}

.legal__contents a:hover {
  color: var(--gold-pale);
}

.legal__content section {
  padding-bottom: 72px;
  scroll-margin-top: calc(var(--header-height) + 35px);
}

.legal__content {
  min-width: 0;
}

.legal__content section + section {
  padding-top: 72px;
  border-top: 1px solid var(--line-soft);
}

.legal__content h2 {
  margin-bottom: 27px;
  font-size: 43px;
}

.legal__content h3 {
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--gold-pale);
  font-size: 24px;
}

.legal__content p,
.legal__content li {
  color: var(--muted);
}

.cookie-table {
  margin: 34px 0;
  overflow-x: auto;
  border: 1px solid var(--line-soft);
}

.cookie-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
}

.cookie-table th,
.cookie-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  color: var(--gold);
  background: rgba(189, 143, 62, 0.035);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cookie-table td {
  color: var(--muted);
}

.cookie-table tr:last-child td {
  border-bottom: 0;
}

.cookie-table code {
  color: var(--gold-pale);
  font-size: 12px;
}

.legal__content .button {
  margin-top: 18px;
  border-bottom-width: 1px;
}

/* Error */
.error-view {
  position: relative;
  display: grid;
  min-height: 780px;
  padding: calc(var(--header-height) + 90px) 0 110px;
  overflow: hidden;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(189, 143, 62, 0.07), transparent 32%),
    url("../img/brand/hero-pattern.webp") center / cover no-repeat,
    var(--ink);
}

.error-view__mark {
  position: absolute;
  color: rgba(228, 196, 119, 0.055);
  font-family: var(--display);
  font-size: min(38vw, 520px);
  line-height: 1;
}

.error-view .container {
  position: relative;
  z-index: 2;
}

.error-view h1 {
  margin-bottom: 25px;
  font-size: clamp(50px, 6vw, 82px);
}

.error-view .container > p:not(.eyebrow) {
  max-width: 590px;
  margin-right: auto;
  margin-bottom: 35px;
  margin-left: auto;
  color: var(--muted);
}

.error-view__actions {
  justify-content: center;
}

/* Progressive, restrained reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
