
:root {
  --ink: #061014;
  --ink-soft: #0a1b20;
  --teal: #123c3d;
  --teal-bright: #4c8580;
  --gold: #c99451;
  --gold-light: #e5c28a;
  --cream: #f2eadc;
  --muted: #a8b5b2;
  --line: rgba(201, 148, 81, 0.3);
  --serif: Georgia, "Times New Roman", serif;
  --sans: var(--font-geist-sans), Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(3, 11, 14, 0.97) 0%, rgba(3, 11, 14, 0.86) 37%, rgba(3, 11, 14, 0.18) 72%),
    radial-gradient(circle at 73% 44%, rgba(85, 142, 136, 0.32), transparent 27%),
    #061014;
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 9, 12, 0.12), rgba(2, 9, 12, 0.55)),
    url("/images/hero-background.png") center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-sky.loaded,
.hero:has(.hero-sky) .hero-sky {
  opacity: 0.84;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, transparent 0 25%, rgba(2, 9, 12, 0.25) 65%),
    linear-gradient(180deg, transparent 72%, var(--ink) 100%);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1480px, calc(100% - 72px));
  margin: 0 auto;
  padding: 26px 0 22px;
  border-bottom: 1px solid rgba(229, 194, 138, 0.18);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  width: fit-content;
  text-transform: uppercase;
}

.wordmark span {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: 0.2em;
  line-height: 1;
}

.wordmark small {
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 0.57rem;
  letter-spacing: 0.31em;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 50px);
}

.site-header nav a,
footer nav a {
  position: relative;
  color: rgba(242, 234, 220, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
}

.site-header nav a::after,
footer nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
footer nav a:hover::after,
footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 13px 19px;
  border: 1px solid rgba(229, 194, 138, 0.62);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--gold-light);
  color: var(--ink);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(440px, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  width: min(1440px, calc(100% - 96px));
  min-height: calc(100svh - 172px);
  margin: 0 auto;
  padding: 58px 0 100px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
  padding-left: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 23px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  color: #f3ebdf;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 6.45vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.release {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 35px 0 32px;
  padding-left: 17px;
  border-left: 1px solid var(--gold);
}

.release span {
  color: #c4cfcb;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.release strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.025em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-gold {
  border-color: var(--gold);
  background: linear-gradient(135deg, #d0a15f, #9e6c34);
  box-shadow: 0 12px 34px rgba(201, 148, 81, 0.16);
  color: #071114;
}

.button-gold:hover,
.button-gold:focus-visible {
  box-shadow: 0 15px 40px rgba(201, 148, 81, 0.29);
}

.button-ghost {
  border-color: rgba(89, 147, 142, 0.54);
  background: rgba(6, 16, 20, 0.44);
  color: #d8e0dc;
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--teal-bright);
  background: rgba(20, 58, 59, 0.58);
}

.hero-book {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  perspective: 1600px;
}

.book-glow {
  position: absolute;
  width: min(38vw, 610px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 133, 128, 0.37), rgba(201, 148, 81, 0.1) 42%, transparent 70%);
  filter: blur(18px);
}

.book-volume {
  position: relative;
  z-index: 1;
  width: clamp(315px, 31vw, 500px);
  transform: rotateY(-11deg) rotateZ(3deg);
  transform-style: preserve-3d;
  animation: bookFloat 7s ease-in-out infinite;
}

.book-volume::before {
  content: "";
  position: absolute;
  inset: 2% -4% -2% 2%;
  z-index: -1;
  border: 1px solid rgba(229, 194, 138, 0.35);
  background: linear-gradient(90deg, #b6aa90, #f4ead5 45%, #81745e);
  transform: translateZ(-20px);
  box-shadow:
    31px 34px 70px rgba(0, 0, 0, 0.62),
    0 0 60px rgba(201, 148, 81, 0.12);
}

.book-volume img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(229, 194, 138, 0.44);
  box-shadow:
    8px 14px 36px rgba(0, 0, 0, 0.46),
    inset 0 0 30px rgba(255, 255, 255, 0.04);
}

.book-pages {
  position: absolute;
  top: 3%;
  right: -18px;
  bottom: -1%;
  z-index: 0;
  width: 30px;
  background: repeating-linear-gradient(90deg, #8e846f 0 1px, #d3c8b0 1px 3px);
  transform: skewY(7deg);
}

@keyframes bookFloat {
  0%,
  100% {
    transform: rotateY(-11deg) rotateZ(3deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateZ(2deg) translateY(-13px);
  }
}

.hero-bottom {
  position: absolute;
  right: 44px;
  bottom: 23px;
  left: 44px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(229, 194, 138, 0.22);
}

.hero-bottom p {
  margin: 0;
  color: rgba(242, 234, 220, 0.55);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.07em;
}

.hero-bottom p span {
  margin: 0 11px;
  color: var(--gold);
}

.hero-bottom > a {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-bottom > a span {
  font-size: 1rem;
  animation: nudgeDown 1.7s ease-in-out infinite;
}

@keyframes nudgeDown {
  50% {
    transform: translateY(5px);
  }
}

.section-shell {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.fae-feature {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background:
    radial-gradient(circle at 20% 42%, rgba(26, 77, 76, 0.52), transparent 31%),
    linear-gradient(145deg, #0a1b20, #061014 62%);
}

.fae-feature::after {
  content: "FAE";
  position: absolute;
  right: -1.5vw;
  bottom: -0.25em;
  color: rgba(229, 194, 138, 0.025);
  font-family: var(--serif);
  font-size: 26vw;
  line-height: 0.8;
  pointer-events: none;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 120px;
}

.feature-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 670px;
}

.cover-frame {
  position: relative;
  width: min(71%, 390px);
}

.cover-frame::before,
.cover-frame::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
}

.cover-frame::before {
  inset: -26px;
}

.cover-frame::after {
  inset: -51px 27px;
}

.cover-frame img {
  position: relative;
  z-index: 2;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.moon-mark {
  position: absolute;
  top: 2%;
  left: 7%;
  color: rgba(229, 194, 138, 0.24);
  font-family: var(--serif);
  font-size: 9rem;
  transform: rotate(-20deg);
}

.feature-copy {
  max-width: 620px;
}

.feature-copy h2,
.section-heading h2,
.about h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.8vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.feature-copy .lede,
.about-copy .lede {
  margin: 35px 0 19px;
  color: #e4ddd0;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.9vw, 1.7rem);
  line-height: 1.48;
}

.feature-copy > p:not(.section-kicker, .lede),
.about-copy > p:not(.section-kicker, .lede) {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.9;
}

.feature-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 38px 0;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-meta div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.feature-meta div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.feature-meta span {
  color: var(--gold);
  font-size: 0.61rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.feature-meta strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.02rem;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.muted-link {
  border-color: rgba(168, 181, 178, 0.35);
  color: #b2bfbc;
}

.worlds {
  padding: 145px 0 165px;
  background:
    linear-gradient(rgba(6, 16, 20, 0.98), rgba(6, 16, 20, 0.98)),
    radial-gradient(circle at 65% 20%, #174348, transparent 40%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 65px;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 9px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
}

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.world-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 39%;
  align-items: end;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(229, 194, 138, 0.2);
  background: #0a2022;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.world-card:hover {
  border-color: rgba(229, 194, 138, 0.6);
  transform: translateY(-7px);
}

.world-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 18, 0.98) 0 48%, rgba(5, 15, 18, 0.08) 100%);
  pointer-events: none;
}

.silver-card {
  background: radial-gradient(circle at 85% 30%, #2c6661, #0b2021 65%);
}

.death-card {
  background: radial-gradient(circle at 85% 30%, #614a31, #181814 65%);
}

.card-copy {
  position: relative;
  z-index: 2;
  padding: 55px 20px 50px 48px;
}

.card-copy p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.card-copy h3 {
  margin: 0 0 21px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.1vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.card-copy > span {
  display: block;
  max-width: 330px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
}

.card-copy a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
}

.card-copy a b {
  transition: transform 0.2s ease;
}

.card-copy a:hover b {
  transform: translateX(4px);
}

.world-card img {
  position: relative;
  z-index: 1;
  align-self: end;
  width: 100%;
  max-height: 410px;
  object-fit: cover;
  object-position: top;
  box-shadow: -20px -15px 60px rgba(0, 0, 0, 0.45);
  transform: translate(10px, 18px) rotate(2deg);
  transition: transform 0.45s ease;
}

.world-card:hover img {
  transform: translate(2px, 8px) rotate(0);
}

.card-number {
  position: absolute;
  top: 25px;
  left: 28px;
  z-index: 2;
  color: rgba(229, 194, 138, 0.45);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 125px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0, rgba(41, 91, 89, 0.4), transparent 40%),
    #08171a;
  text-align: center;
}

.quote-stars {
  margin-bottom: 35px;
  color: var(--gold);
  letter-spacing: 1.1em;
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.7rem);
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.13;
}

.quote-band > p {
  margin: 30px 0 0;
  color: var(--gold);
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.about {
  padding: 155px 0;
  background: #0b1d20;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 125px;
}

.portrait-wrap {
  position: relative;
  max-width: 470px;
  padding: 30px 0 35px 35px;
}

.portrait-wrap img {
  position: relative;
  z-index: 2;
  width: 80%;
  max-height: 625px;
  margin-left: auto;
  border: 1px solid rgba(229, 194, 138, 0.35);
  object-fit: cover;
  object-position: center 33%;
  filter: saturate(0.75) contrast(1.05);
}

.portrait-ring {
  position: absolute;
  top: -30px;
  right: -35px;
  width: 340px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.portrait-ring::before,
.portrait-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(76, 133, 128, 0.38);
  border-radius: 50%;
}

.portrait-ring::before {
  inset: 25px;
}

.portrait-ring::after {
  inset: 70px;
}

.portrait-note {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 250px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(6, 16, 20, 0.9);
  backdrop-filter: blur(12px);
}

.portrait-note span {
  color: var(--gold);
  font-size: 0.56rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.portrait-note strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.about-copy {
  max-width: 620px;
}

.about-copy .text-link {
  margin-top: 30px;
}

.journal {
  padding: 140px 0;
  background: #061014;
}

.journal .section-heading {
  align-items: end;
}

.journal-list {
  border-top: 1px solid var(--line);
}

.journal-item {
  display: grid;
  grid-template-columns: 50px 190px 1fr 45px;
  align-items: center;
  gap: 25px;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.25s ease,
    padding 0.25s ease;
}

.journal-item:hover,
.journal-item:focus-visible {
  padding: 0 18px;
  background: rgba(18, 60, 61, 0.22);
}

.journal-number {
  color: rgba(229, 194, 138, 0.5);
  font-family: var(--serif);
}

.journal-label {
  color: var(--gold);
  font-size: 0.61rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journal-item strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 400;
}

.journal-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.journal-item:hover .journal-arrow {
  transform: translate(4px, -4px);
}

.newsletter {
  position: relative;
  overflow: hidden;
  padding: 155px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(35, 88, 85, 0.64), transparent 40%),
    linear-gradient(130deg, #071417, #0d2829 50%, #071417);
  text-align: center;
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: clamp(3.6rem, 6.7vw, 7.2rem);
}

.newsletter-inner > p:not(.section-kicker) {
  max-width: 585px;
  margin: 27px auto 36px;
  color: #b7c2bf;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.7;
}

.newsletter .button {
  min-width: 260px;
}

.newsletter small {
  display: block;
  margin-top: 19px;
  color: rgba(242, 234, 220, 0.45);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
}

.newsletter-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(229, 194, 138, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 770px;
}

.orbit-two {
  width: 1010px;
}

.newsletter-orbit::before,
.newsletter-orbit::after {
  content: "✦";
  position: absolute;
  color: var(--gold);
  font-size: 0.75rem;
}

.newsletter-orbit::before {
  top: 8%;
  left: 22%;
}

.newsletter-orbit::after {
  right: 10%;
  bottom: 20%;
}

footer {
  padding: 65px max(40px, calc((100% - 1240px) / 2)) 24px;
  background: #030a0c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 48px;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.social-links a {
  color: rgba(242, 234, 220, 0.58);
  font-size: 0.7rem;
}

.social-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(229, 194, 138, 0.14);
  color: rgba(242, 234, 220, 0.3);
  font-size: 0.59rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 0.95fr 1.05fr;
    width: min(100% - 54px, 1000px);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7.4vw, 6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
  }

  .hero-book {
    min-height: 570px;
  }

  .feature-grid,
  .about-grid {
    gap: 70px;
  }

  .world-card {
    grid-template-columns: 1fr 36%;
    min-height: 460px;
  }

  .card-copy {
    padding-left: 35px;
  }

  .journal-item {
    grid-template-columns: 44px 155px 1fr 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main nav {
    display: none;
  }
}

@media (max-width: 800px) {
  .site-header {
    width: calc(100% - 36px);
    padding-top: 20px;
  }

  .wordmark span {
    font-size: 1.05rem;
  }

  .wordmark small {
    display: none;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    min-height: auto;
    padding: 85px 0 125px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 5.7rem);
  }

  .hero-book {
    min-height: 535px;
    margin-top: 55px;
  }

  .book-volume {
    width: min(70vw, 380px);
  }

  .hero-bottom {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .hero-bottom p {
    display: none;
  }

  .hero-bottom > a {
    margin-left: auto;
  }

  .section-shell {
    width: calc(100% - 42px);
  }

  .fae-feature,
  .worlds,
  .about,
  .journal {
    padding: 100px 0;
  }

  .feature-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .feature-art {
    min-height: 560px;
  }

  .feature-copy h2,
  .section-heading h2,
  .about h2 {
    font-size: clamp(2.8rem, 12vw, 4.7rem);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 45px;
  }

  .world-grid {
    grid-template-columns: 1fr;
  }

  .world-card {
    min-height: 500px;
  }

  .world-card img {
    max-height: 380px;
  }

  .quote-band {
    padding: 100px 24px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
  }

  .portrait-wrap {
    width: min(100%, 500px);
  }

  .journal-item {
    grid-template-columns: 36px 1fr 30px;
    gap: 15px;
    min-height: 110px;
  }

  .journal-label {
    display: none;
  }

  .newsletter {
    padding: 120px 22px;
  }

  .orbit-one {
    width: 600px;
  }

  .orbit-two {
    width: 800px;
  }

  footer {
    padding-inline: 24px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    max-width: none;
  }

  .button {
    width: 100%;
  }

  .release {
    margin-top: 30px;
  }

  .hero-book {
    min-height: 470px;
  }

  .book-volume {
    width: 71vw;
  }

  .feature-art {
    min-height: 485px;
  }

  .cover-frame {
    width: 69%;
  }

  .feature-meta {
    grid-template-columns: 1fr;
  }

  .feature-meta div + div {
    padding-top: 17px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .world-card {
    grid-template-columns: 1fr 34%;
    min-height: 460px;
  }

  .card-copy {
    padding: 60px 0 38px 25px;
  }

  .card-copy > span {
    font-size: 0.88rem;
  }

  .card-copy h3 {
    font-size: 2.2rem;
  }

  .world-card img {
    height: 330px;
    object-fit: cover;
    object-position: 50% 0;
  }

  .portrait-wrap {
    padding-left: 5px;
  }

  .portrait-wrap img {
    width: 86%;
  }

  .portrait-note {
    width: 220px;
  }

  .newsletter h2 {
    font-size: 3.7rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

@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;
  }
}
