:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  --container-width: 74rem;
  --header-height: 5.5rem;

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", Arial, sans-serif;

  --color-surface: #f3efe8;
  --color-surface-muted: #e8e1d5;
  --color-surface-raised: rgba(255, 255, 255, 0.9);
  --color-ink: #111318;
  --color-text: #f6f1e8;
  --color-text-muted: rgba(246, 241, 232, 0.8);
  --color-text-dark: #24221e;
  --color-text-soft: rgba(36, 34, 30, 0.76);
  --color-primary: #b01f21;
  --color-primary-hover: #c92a2d;
  --color-primary-active: #8f181b;
  --color-gold: #c49a5a;
  --color-border: rgba(255, 255, 255, 0.14);
  --color-border-dark: rgba(17, 19, 24, 0.14);
  --color-shadow: rgba(5, 8, 15, 0.35);
  --color-night: #050a12;
  --color-night-soft: #0f1722;

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;

  --shadow-soft: 0 1.5rem 3rem rgba(5, 8, 15, 0.16);
  --shadow-strong: 0 2rem 4rem rgba(5, 8, 15, 0.38);

  --motion-fast: 120ms;
  --motion-normal: 180ms;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(255, 186, 91, 0.12), transparent 24%),
    linear-gradient(180deg, #0c1118 0%, #070b11 100%);
  overflow-x: clip;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 0.2rem solid #f2d2a1;
  outline-offset: 0.2rem;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  padding: var(--space-3) var(--space-4);
  margin: var(--space-4);
  overflow: visible;
  clip: auto;
  color: var(--color-ink);
  background: #fff5e3;
  z-index: 100;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin: 0 auto;
}

.site-header {
  --header-surface-opacity: 0.52;
  --header-border-opacity: 0.08;
  --header-shadow-opacity: 0.12;
  --header-blur: 18px;
  --header-lift: 0px;
  --header-inner-height: var(--header-height);
  --header-chrome-opacity: 0.14;
  --header-chrome-bg-opacity: 0.04;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, var(--header-border-opacity));
  backdrop-filter: blur(var(--header-blur));
  background: rgba(7, 11, 17, var(--header-surface-opacity));
  box-shadow: 0 0.85rem 2.4rem rgba(5, 8, 15, var(--header-shadow-opacity));
  transform: translate3d(0, var(--header-lift), 0);
  will-change: transform, background-color, border-color, box-shadow;
}

html.js .site-header {
  --header-surface-opacity: 0;
  --header-border-opacity: 0;
  --header-shadow-opacity: 0;
  --header-blur: 0px;
  --header-lift: -8px;
  --header-inner-height: 6.2rem;
  --header-chrome-opacity: 0;
  --header-chrome-bg-opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-inner-height);
}

.brand,
.site-nav a,
.button,
.section-heading h2,
.hero-copy h1,
.book-card h3,
.author-copy h2,
.news-card h3,
.newsletter-copy h2,
.footer-mark {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.brand {
  font-size: clamp(1.65rem, 1.1rem + 1vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: none;
}

.site-nav.is-open {
  display: flex;
}

.nav-toggle {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  color: var(--color-text);
  background: rgba(255, 255, 255, var(--header-chrome-bg-opacity));
  border: 1px solid rgba(255, 255, 255, var(--header-chrome-opacity));
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  position: absolute;
  top: calc(100% - 0.25rem);
  left: 1rem;
  right: 1rem;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(7, 11, 17, 0.96);
  box-shadow: var(--shadow-strong);
}

.site-nav a {
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  color: #fff2de;
}

.social-links {
  display: flex;
  gap: var(--space-3);
  padding-top: var(--space-2);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, var(--header-chrome-opacity));
  border-radius: 999px;
  background: rgba(255, 255, 255, var(--header-chrome-bg-opacity));
  color: #fff4e2;
  transition:
    transform var(--motion-fast) ease-out,
    border-color var(--motion-fast) ease-out,
    color var(--motion-fast) ease-out;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: #ffd8aa;
  border-color: rgba(255, 216, 170, 0.42);
}

.social-links svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero-section {
  --hero-progress: 0;
  --hero-copy-opacity: 1;
  --hero-copy-shift: 0px;
  --hero-copy-blur: 0px;
  --hero-copy-halo-x: 0px;
  --hero-copy-halo-y: 0px;
  --hero-copy-halo-scale: 1;
  --hero-copy-halo-opacity: 1;
  --hero-intertitle-opacity: 0;
  --hero-intertitle-shift: 2rem;
  --hero-intertitle-line-two-opacity: 0;
  --hero-intertitle-line-two-shift: 1rem;
  --hero-actions-opacity: 1;
  --hero-book-shift: 0px;
  --hero-book-scale: 0.82;
  --hero-book-rotate-x: 0deg;
  --hero-book-rotate-y: 0deg;
  --hero-book-rotate-z: 0deg;
  --hero-backdrop-shift: 0px;
  --hero-backdrop-scale: 1;
  --hero-shadow-scale: 1;
  --hero-shadow-opacity: 0.58;
  position: relative;
  isolation: isolate;
  height: 180svh;
  min-height: 120rem;
}

.hero-frame {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: clip;
}

.hero-backdrop,
.hero-backdrop::before,
.hero-backdrop::after {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(90deg, rgba(4, 7, 11, 0.76) 0%, rgba(4, 7, 11, 0.62) 32%, rgba(4, 7, 11, 0.24) 62%, rgba(4, 7, 11, 0.5) 100%),
    linear-gradient(180deg, rgba(6, 10, 14, 0.08) 0%, rgba(6, 10, 14, 0.28) 56%, rgba(6, 10, 14, 0.64) 100%),
    url("assets/optimized/03_hero_background_2.webp") center center / cover no-repeat;
  transform: translate3d(0, var(--hero-backdrop-shift), 0)
    scale(var(--hero-backdrop-scale));
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}

.hero-backdrop::before {
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 15, 0.28) 0%,
      rgba(5, 8, 15, 0.08) 28%,
      transparent 52%
    );
}

.hero-backdrop::after {
  content: "";
  inset: auto 0 0;
  height: clamp(7rem, 16vw, 11rem);
  background: linear-gradient(180deg, rgba(6, 10, 14, 0), rgba(6, 10, 14, 0.6));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "copy"
    "visual"
    "actions";
  gap: var(--space-10);
  min-height: 100svh;
  padding: calc(var(--header-height) + 3.25rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.hero-copy-stage {
  grid-area: copy;
  position: relative;
  min-height: clamp(22rem, 34vw, 31rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 34rem;
  opacity: var(--hero-copy-opacity);
  filter: blur(var(--hero-copy-blur));
  transform: translate3d(0, var(--hero-copy-shift), 0);
  transform-origin: left bottom;
  will-change: transform, opacity, filter;
}

.hero-copy,
.hero-intertitle {
  max-width: 34rem;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: clamp(-4.5rem, -2vw, -1.25rem);
  top: 50%;
  width: clamp(20rem, 42vw, 33rem);
  aspect-ratio: 1;
  opacity: var(--hero-copy-halo-opacity);
  transform:
    translate3d(var(--hero-copy-halo-x), calc(-44% + var(--hero-copy-halo-y)), 0)
    scale(var(--hero-copy-halo-scale));
  transform-origin: 42% 54%;
  background: radial-gradient(
    circle,
    rgba(255, 190, 104, 0.3) 0%,
    rgba(242, 173, 89, 0.18) 23%,
    rgba(196, 91, 44, 0.08) 44%,
    rgba(242, 173, 89, 0) 72%
  );
  filter: blur(0.9rem);
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-intertitle {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  opacity: var(--hero-intertitle-opacity);
  transform: translate3d(0, var(--hero-intertitle-shift), 0);
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-intertitle__eyebrow,
.hero-intertitle__text {
  margin: 0;
}

.hero-intertitle__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.88rem + 0.35vw, 1.25rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 223, 178, 0.88);
}

.hero-intertitle__text {
  max-width: 24rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 1.55rem + 1.9vw, 3.45rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: rgba(248, 242, 232, 0.98);
  text-shadow: 0 0.45rem 1.5rem rgba(5, 8, 15, 0.34);
}

.hero-intertitle__text--secondary {
  opacity: var(--hero-intertitle-line-two-opacity);
  transform: translate3d(0, var(--hero-intertitle-line-two-shift), 0);
  will-change: transform, opacity;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.95rem + 0.65vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.eyebrow--accent {
  color: #c52d28;
}

.eyebrow--gold {
  color: var(--color-gold);
}

.hero-copy h1,
.section-heading h2,
.author-copy h2,
.newsletter-copy h2 {
  margin: 0;
  font-size: clamp(3.9rem, 2.8rem + 5vw, 7.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
}

.hero-title-word {
  display: block;
}

.hero-title-word--italic {
  font-style: italic;
}

.section-heading h2,
.author-copy h2,
.newsletter-copy h2 {
  font-size: clamp(2.7rem, 2rem + 2.2vw, 4.25rem);
  line-height: 0.95;
}

.hero-title-sub {
  margin: var(--space-3) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.15rem + 0.65vw, 2rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 242, 232, 0.96);
}

.hero-tagline {
  display: inline-block;
  margin: var(--space-4) 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.12rem + 0.68vw, 2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--color-gold);
  transform: translate3d(0, calc(var(--hero-progress) * -18px), 0);
}

.hero-description,
.author-copy p,
.newsletter-copy p,
.news-card p,
.book-card p,
.quote-card p {
  font-size: clamp(1.05rem, 0.98rem + 0.25vw, 1.22rem);
}

.hero-description {
  max-width: 27rem;
  margin: 0 0 var(--space-4);
  color: rgba(246, 241, 232, 0.94);
  transform: translate3d(0, calc(var(--hero-progress) * -32px), 0);
}

.hero-proof-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.52rem;
  max-width: 31rem;
  margin: 0 0 var(--space-7);
  padding: 0;
  list-style: none;
  color: rgba(255, 244, 226, 0.9);
  transform: translate3d(0, calc(var(--hero-progress) * -28px), 0);
}

.hero-award {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  flex: 0 1 14.75rem;
  max-width: 14.75rem;
  min-height: 3.95rem;
  gap: 0.52rem;
  padding: 0.42rem 0.62rem 0.42rem 0.42rem;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 90, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(6, 10, 14, 0.48);
  box-shadow:
    0 0.8rem 1.6rem rgba(2, 4, 8, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.hero-award::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 15%;
  z-index: -1;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 154, 90, 0.22), transparent 68%);
  opacity: 0.74;
}

.hero-award__seal {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 244, 226, 0.46);
  background: var(--color-paper);
  box-shadow:
    0 0.45rem 1rem rgba(2, 4, 8, 0.32),
    0 0 0 0.22rem rgba(196, 154, 90, 0.15);
}

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

.hero-award__seal svg {
  width: 1.7rem;
  height: 1.7rem;
}

.hero-award--screen .hero-award__seal {
  color: var(--color-paper);
  border-color: rgba(255, 244, 226, 0.24);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(135deg, var(--color-primary), #6e1113);
}

.hero-award__copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
  line-height: 1;
}

.hero-award__kicker,
.hero-award__meta {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-award__kicker {
  font-size: 0.72rem;
  color: var(--color-primary);
}

.hero-award__title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-paper);
}

.hero-award__meta {
  font-size: 0.63rem;
  color: rgba(220, 181, 114, 0.92);
}

.hero-actions,
.book-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-actions {
  grid-area: actions;
  opacity: var(--hero-actions-opacity);
  transform: translate3d(0, calc(var(--hero-progress) * -46px), 0);
  will-change: transform, opacity;
}

.hero-actions .button {
  white-space: nowrap;
}

.button__arrow {
  flex: 0 0 auto;
  width: 0.92em;
  height: 0.92em;
  margin-left: 0.62rem;
  transform: translateY(-0.02em);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color var(--motion-normal) ease-out,
    color var(--motion-normal) ease-out,
    border-color var(--motion-normal) ease-out,
    transform var(--motion-normal) ease-out,
    box-shadow var(--motion-normal) ease-out;
}

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

.button--primary {
  color: #fff6ea;
  background: var(--color-primary);
  box-shadow: 0 1rem 2rem rgba(176, 31, 33, 0.18);
}

.button--primary:hover {
  background: var(--color-primary-hover);
}

.button--primary:active {
  background: var(--color-primary-active);
}

.button--ghost,
.button--outline,
.button--outline-light {
  background: transparent;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff1df;
}

.button--outline {
  border-color: rgba(176, 31, 33, 0.44);
  color: var(--color-primary);
}

.button--outline-light {
  border-color: rgba(196, 154, 90, 0.6);
  color: #ffe1b6;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: clamp(23rem, 45vw, 37rem);
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 2.25rem;
  height: clamp(2.5rem, 7vw, 4.5rem);
  background: radial-gradient(circle, rgba(2, 4, 8, 0.64) 0%, rgba(2, 4, 8, 0) 72%);
  filter: blur(0.8rem);
  opacity: var(--hero-shadow-opacity);
  transform: scaleX(var(--hero-shadow-scale));
  pointer-events: none;
}

.hero-book-stage {
  position: relative;
  width: min(100%, 45rem);
  padding: 0 clamp(0.25rem, 1.8vw, 1.4rem);
  transform: translate3d(0, var(--hero-book-shift), 0);
  will-change: transform;
}

.hero-book-stage::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 8%;
  bottom: 0.75rem;
  height: clamp(2.6rem, 6vw, 4.2rem);
  background: radial-gradient(circle, rgba(6, 10, 14, 0.8) 0%, rgba(6, 10, 14, 0) 70%);
  filter: blur(0.75rem);
  opacity: var(--hero-shadow-opacity);
  transform: scaleX(var(--hero-shadow-scale));
}

.hero-book-image {
  position: relative;
  z-index: 1;
  width: clamp(19.5rem, 46vw, 42rem);
  margin-inline: auto;
  transform:
    perspective(1400px)
    rotateY(var(--hero-book-rotate-y))
    rotateX(var(--hero-book-rotate-x))
    rotateZ(var(--hero-book-rotate-z))
    scale(var(--hero-book-scale));
  transform-origin: 52% 64%;
  will-change: transform;
}

.hero-book-stage picture,
.book-card__media picture,
.author-visual picture {
  display: block;
}

.author-visual picture {
  width: 100%;
  height: 100%;
}

.book-mockup {
  --book-width: 14rem;
  --book-height: calc(var(--book-width) * 1.48);
  --spine-width: calc(var(--book-width) * 0.18);
  --book-shadow: rgba(4, 7, 11, 0.44);

  position: relative;
  width: calc(var(--book-width) + var(--spine-width));
  height: calc(var(--book-height) + 0.65rem);
  filter: drop-shadow(1.5rem 2rem 2rem var(--book-shadow));
  transform: perspective(1000px) rotateY(-24deg);
  transform-style: preserve-3d;
  transition: transform 260ms ease-out;
}

.book-mockup:hover {
  transform: perspective(1000px) rotateY(-20deg) translateY(-0.3rem);
}

.book-mockup__front,
.book-mockup__spine,
.book-mockup__top {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.book-mockup__front {
  right: 0;
  width: var(--book-width);
  height: var(--book-height);
  padding: 1.35rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f7f0e7;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 11%,
      rgba(0, 0, 0, 0.06) 11%,
      rgba(0, 0, 0, 0.06) 22%
    ),
    linear-gradient(180deg, #4a4a4b 0%, #1c1e22 45%, #0f1013 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.book-mockup__front::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.book-mockup__spine {
  left: 0;
  width: var(--spine-width);
  height: var(--book-height);
  display: grid;
  place-items: center;
  color: rgba(247, 240, 231, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, #111216, #050607);
  transform: translateZ(-0.75rem);
}

.book-mockup__spine span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.book-mockup__top {
  top: -0.65rem;
  right: 0.35rem;
  width: calc(var(--book-width) - 0.2rem);
  height: 0.65rem;
  background: linear-gradient(90deg, #5d5e63, #22252b);
  transform: skewX(-58deg);
  transform-origin: bottom left;
}

.book-mockup__author,
.book-mockup__subtitle {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.book-mockup__author {
  font-size: clamp(0.9rem, 0.45rem + 0.8vw, 1.5rem);
  text-align: center;
}

.book-mockup__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 1.35rem + 2vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.book-mockup__subtitle {
  font-size: clamp(0.9rem, 0.65rem + 0.4vw, 1.25rem);
}

.book-mockup__flag {
  position: absolute;
  top: 4.35rem;
  right: 2rem;
  width: 3.8rem;
  height: 2.65rem;
  background: linear-gradient(90deg, #103f96 0 33.33%, #f3f3f3 33.33% 66.66%, #d12f30 66.66% 100%);
  transform: skewY(-10deg) rotate(8deg);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.22);
}

.book-mockup--hero {
  --book-width: clamp(14rem, 31vw, 21rem);
}

.book-mockup--shelf {
  --book-width: clamp(10.5rem, 21vw, 13rem);
  filter: drop-shadow(1rem 1.45rem 1.6rem rgba(5, 8, 15, 0.2));
}

.book-mockup--volume-2 .book-mockup__front {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, rgba(16, 16, 17, 0.4), rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, #27272a 0%, #111216 55%, #08080a 100%);
}

.book-mockup--volume-2 .book-mockup__title {
  color: #d0292f;
}

.book-mockup--volume-2 .book-mockup__flag {
  display: none;
}

.section {
  position: relative;
  padding: var(--space-12) 0;
}

section[id],
footer[id] {
  scroll-margin-top: 3.5rem;
}

#home {
  scroll-margin-top: 0;
}

.section--paper {
  color: var(--color-text-dark);
  background:
    radial-gradient(circle at top center, rgba(196, 154, 90, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    #efe6d8;
}

.section--paper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(0deg, rgba(94, 71, 39, 0.05), rgba(94, 71, 39, 0.05)),
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.36), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(196, 154, 90, 0.14), transparent 18%);
  pointer-events: none;
}

.section--paper > .container {
  position: relative;
  z-index: 1;
}

.section--books > .container {
  width: min(calc(100% - 2rem), 85.5rem);
}

.section--books {
  --books-lift: 5.5rem;
  --books-shadow-opacity: 0.18;
  --books-curtain-opacity: 0.22;
  z-index: 3;
  margin-top: clamp(-7rem, -9vw, -4.75rem);
  padding-block: var(--space-12);
  transform: translate3d(0, var(--books-lift), 0);
  box-shadow: 0 -1.5rem 3rem rgba(6, 10, 14, var(--books-shadow-opacity));
  will-change: transform;
}

.section--books::after {
  content: "";
  position: absolute;
  inset: auto 0 100%;
  height: clamp(3.5rem, 7vw, 5.5rem);
  background: linear-gradient(
    180deg,
    rgba(6, 10, 14, 0),
    rgba(6, 10, 14, var(--books-curtain-opacity))
  );
  pointer-events: none;
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(196, 154, 90, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%),
    linear-gradient(180deg, #141518 0%, #090a0d 100%);
}

.section--news {
  background:
    radial-gradient(circle at 0% 0%, rgba(176, 31, 33, 0.16), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(196, 154, 90, 0.12), transparent 18%),
    linear-gradient(180deg, #17161a, #0b0c10);
}

.section--newsletter {
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(11, 8, 10, 0.82) 0%,
      rgba(11, 8, 10, 0.6) 24%,
      rgba(11, 8, 10, 0.22) 56%,
      rgba(11, 8, 10, 0.54) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 6, 7, 0.18) 0%,
      rgba(8, 6, 7, 0.12) 52%,
      rgba(8, 6, 7, 0.58) 100%
    ),
    url("assets/optimized/footer-newsletter.webp") center center / cover no-repeat;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: var(--space-10);
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section--news .section-heading {
  max-width: none;
}

.section--news .section-heading h2 {
  font-size: clamp(2.1rem, 1.45rem + 2vw, 4.1rem);
  max-width: 12ch;
  white-space: normal;
}

.section-heading h2::after,
.author-copy h2::after,
.newsletter-copy h2::after {
  content: "";
  display: block;
  width: 4.25rem;
  height: 0.18rem;
  margin-top: var(--space-3);
  background: var(--color-primary);
}

.section-heading--center h2::after {
  margin-right: auto;
  margin-left: auto;
}

.books-grid,
.quotes-grid,
.news-grid,
.author-grid,
.footer-inner {
  display: grid;
  gap: var(--space-8);
}

.books-grid {
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.book-card {
  display: grid;
  gap: var(--space-6);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.book-card__media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(19.2rem, 25.6vw, 24.8rem);
}

.book-card__cover {
  width: clamp(16.8rem, 27.2vw, 24.8rem);
  max-width: 100%;
}

.book-card__cover--real {
  filter: none;
}

.book-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.book-card h3,
.news-card h3 {
  margin: 0;
  font-size: clamp(2.3rem, 1.9rem + 1.2vw, 3.2rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--color-ink);
}

.book-card h3 {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.book-card__title-main,
.book-card__title-sub {
  display: block;
  white-space: nowrap;
}

.book-card__title-main {
  font-size: clamp(2.8rem, 2.2rem + 1vw, 3.8rem);
  line-height: 0.92;
}

.book-card__title-sub {
  font-size: clamp(1.5rem, 1.3rem + 0.45vw, 2rem);
  line-height: 1;
}

.book-card p {
  margin: 0;
  color: var(--color-text-soft);
}

.book-card .eyebrow {
  color: var(--color-primary);
}

.book-card__summary {
  max-width: none;
  font-weight: 400;
  color: var(--color-text-dark);
}

.book-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  min-height: 2.45rem;
  padding-top: var(--space-2);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(36, 34, 30, 0.92);
}

.book-card__meta strong {
  font-size: 1.5rem;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--color-ink);
}

.book-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.book-card__meta-item svg,
.button--with-icon svg {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
}

.book-card__meta-divider {
  width: 1px;
  height: 1rem;
  background: rgba(36, 34, 30, 0.22);
}

.book-card__meta--date {
  flex-wrap: nowrap;
  padding-top: 0;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(36, 34, 30, 0.9);
}

.book-card__meta--date .book-card__meta-item {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.button--wide {
  min-width: clamp(13rem, 18vw, 15rem);
  justify-content: space-between;
  padding-inline: 1.15rem;
}

.button--with-icon {
  gap: 0.8rem;
}

.author-grid {
  align-items: start;
}

.author-visual {
  position: relative;
  align-self: start;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
}

.author-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% 24%;
}

.author-copy h2 {
  margin-bottom: var(--space-5);
}

.author-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  max-width: 42rem;
}

.author-copy p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
}

.author-more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-0.35rem);
  transition:
    max-height 420ms ease,
    opacity 260ms ease,
    transform 320ms ease;
}

.author-more.is-open {
  max-height: 34rem;
  opacity: 1;
  transform: translateY(0);
}

.author-more p:first-child {
  padding-top: var(--space-2);
}

.author-toggle {
  align-self: flex-start;
  margin-top: var(--space-1);
}

.quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100%;
  padding: var(--space-5) var(--space-5) var(--space-4);
  border: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(255, 252, 246, 0.3);
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 0.15rem;
  left: 0.75rem;
  font-family: var(--font-display);
  font-size: 3.1rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.72;
}

.quote-card p {
  flex: 1;
  margin: 0 0 var(--space-3);
  padding-left: 1.45rem;
  font-size: clamp(0.94rem, 0.88rem + 0.18vw, 1.05rem);
  line-height: 1.32;
  color: var(--color-text-dark);
}

.quote-card--short p {
  display: flex;
  align-items: center;
}

.quote-card__person {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-top: auto;
  padding-left: 1.45rem;
}

.quote-card__avatar {
  flex: 0 0 5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(176, 31, 33, 0.22);
  background: #111318;
  box-shadow: 0 0.55rem 1rem rgba(17, 19, 24, 0.14);
}

.quote-card__avatar--image {
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.quote-card__avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(176, 31, 33, 0.78), rgba(17, 19, 24, 0.92)),
    #111318;
}

.quote-card cite {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--color-text-soft);
}

.quote-card__name {
  display: block;
  color: var(--color-text-dark);
  font-weight: 700;
}

.quote-card__role {
  display: block;
  margin-top: 0.12rem;
  color: var(--color-text-soft);
}

.quote-credits {
  max-width: 62rem;
  margin: var(--space-4) auto 0;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
  color: rgba(32, 32, 33, 0.56);
}

.quote-credits a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.news-grid {
  color: var(--color-text);
}

.news-carousel {
  --news-gap: var(--space-6);
  position: relative;
}

.news-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.news-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.news-carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--news-gap);
}

.news-carousel .news-card {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
}

.news-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(246, 241, 232, 0.82);
  background: rgba(7, 11, 17, 0.72);
  box-shadow: 0 0.85rem 1.8rem rgba(2, 4, 8, 0.24);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition:
    border-color var(--motion-normal) ease-out,
    color var(--motion-normal) ease-out,
    background-color var(--motion-normal) ease-out,
    opacity var(--motion-normal) ease-out;
}

html.js .news-carousel__button {
  display: grid;
}

.news-carousel__button[hidden] {
  display: none;
}

.news-carousel__button:not(:disabled):hover,
.news-carousel__button:not(:disabled):focus-visible {
  border-color: rgba(196, 154, 90, 0.46);
  color: #fff6ea;
  background: rgba(176, 31, 33, 0.62);
}

.news-carousel__button:disabled {
  cursor: default;
  opacity: 0.32;
  color: rgba(246, 241, 232, 0.5);
  background: rgba(7, 11, 17, 0.42);
  box-shadow: none;
}

.news-carousel__button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.news-carousel__button--prev {
  left: -1.35rem;
}

.news-carousel__button--next {
  right: -1.35rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 19, 0.84);
  box-shadow: var(--shadow-soft);
}

.news-card h3 {
  margin-bottom: var(--space-3);
  color: var(--color-gold);
}

.news-card p {
  flex: 1;
  margin: 0;
  color: rgba(246, 241, 232, 0.82);
}

.news-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 0.5rem;
  min-height: 2.6rem;
  margin-top: var(--space-5);
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(196, 154, 90, 0.42);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff1df;
  background: rgba(176, 31, 33, 0.18);
  transition:
    border-color var(--motion-normal) ease-out,
    background-color var(--motion-normal) ease-out,
    color var(--motion-normal) ease-out,
    transform var(--motion-normal) ease-out;
}

.news-card__action:hover,
.news-card__action:focus-visible {
  border-color: rgba(196, 154, 90, 0.68);
  color: #fff6ea;
  background: rgba(176, 31, 33, 0.46);
  transform: translateY(-1px);
}

.news-card__action svg {
  flex: 0 0 auto;
  width: 0.9em;
  height: 0.9em;
}

.news-card__date {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.newsletter-panel {
  position: relative;
  display: grid;
  gap: var(--space-6);
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.newsletter-panel::before {
  content: none;
}

.newsletter-copy,
.newsletter-ornament {
  position: relative;
  z-index: 1;
}

.newsletter-copy p {
  max-width: 34rem;
}

.newsletter-copy {
  align-self: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
  max-width: 28rem;
}

.newsletter-form input {
  min-height: 3.6rem;
  padding: 0.9rem 1rem;
  color: #fff2e7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 11, 17, 0.5);
}

.newsletter-form input::placeholder {
  color: rgba(255, 242, 231, 0.72);
}

.newsletter-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.newsletter-honeypot,
.newsletter-honeypot-label {
  position: absolute;
  top: auto;
  left: -9999px;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
}

.newsletter-feedback {
  min-height: 1.4rem;
  max-width: 34rem;
  margin: var(--space-3) 0 0;
  color: rgba(246, 241, 232, 0.78);
  font-weight: 700;
}

.newsletter-feedback[data-state="success"] {
  color: #f2d2a1;
}

.newsletter-feedback[data-state="error"] {
  color: #ffb8a9;
}

.newsletter-privacy {
  max-width: 34rem;
  margin: var(--space-4) 0 0;
  color: rgba(246, 241, 232, 0.74);
  font-size: 0.95rem;
}

.newsletter-privacy a {
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.newsletter-ornament {
  display: none;
}

.site-footer {
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070b11;
}

.footer-inner {
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand strong,
.footer-brand-link,
.footer-copy,
.footer-nav a,
.footer-brand span {
  display: block;
}

.footer-brand strong,
.footer-brand-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
}

.footer-brand-link {
  transition:
    color var(--motion-normal) ease,
    text-decoration-color var(--motion-normal) ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
}

.footer-brand-link:hover,
.footer-brand-link:focus-visible {
  color: var(--color-gold);
  text-decoration-color: currentColor;
}

.footer-brand span,
.footer-copy {
  color: rgba(246, 241, 232, 0.7);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-nav a {
  color: rgba(246, 241, 232, 0.82);
  transition: color var(--motion-normal) ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-nav a[aria-current="page"] {
  color: var(--color-gold);
}

.legal-page {
  color: var(--color-text-dark);
  background: var(--color-surface);
}

.legal-page .site-header {
  --header-surface-opacity: 0;
  --header-border-opacity: 0;
  --header-shadow-opacity: 0;
  --header-blur: 0px;
  --header-lift: -8px;
  --header-inner-height: 6.2rem;
  --header-chrome-opacity: 0;
  --header-chrome-bg-opacity: 0;
}

.legal-page .brand,
.legal-page .site-nav a {
  color: var(--color-text);
}

.legal-page .site-nav a:hover,
.legal-page .site-nav a:focus-visible,
.legal-page .site-nav a[aria-current="page"] {
  color: #fff2de;
}

.legal-main {
  min-height: 100vh;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-12);
  color: var(--color-text);
  background:
    linear-gradient(90deg, rgba(5, 8, 15, 0.94) 0%, rgba(5, 8, 15, 0.72) 52%, rgba(5, 8, 15, 0.52) 100%),
    url("assets/optimized/03_hero_background_2.webp") center center / cover no-repeat;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, transparent 0%, var(--color-surface) 100%);
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-hero h1 {
  margin: var(--space-3) 0 var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(4rem, 2.8rem + 5vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-hero p:last-child {
  max-width: 43rem;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.legal-content {
  position: relative;
  padding: var(--space-12) 0 var(--space-16);
  color: var(--color-text-dark);
  background:
    radial-gradient(circle at 8% 0%, rgba(176, 31, 33, 0.06), transparent 24rem),
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-muted) 100%);
}

.legal-document {
  max-width: 54rem;
}

.legal-updated {
  margin: 0 0 var(--space-8);
  color: var(--color-text-soft);
  font-weight: 600;
}

.legal-section {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border-dark);
}

.legal-section:last-child {
  border-bottom: 1px solid var(--color-border-dark);
}

.legal-section h2 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.legal-section p {
  margin: 0;
  color: var(--color-text-soft);
}

.legal-section p + p,
.legal-section p + ul {
  margin-top: var(--space-4);
}

.legal-section ul {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-text-soft);
}

.legal-section a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--color-primary-hover);
}

@media (min-width: 48rem) {
  .author-grid,
  .newsletter-panel,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .books-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quotes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-carousel .news-card {
    flex-basis: calc((100% - var(--news-gap)) / 2);
  }

  .newsletter-form {
    grid-template-columns: minmax(0, 1fr) auto;
    display: grid;
  }

  .author-portrait {
    object-position: 45% 24%;
  }
}

@media (max-width: 64rem) {
  .hero-section {
    height: 138svh;
    min-height: 82rem;
  }

  .hero-inner {
    gap: clamp(0.9rem, 2.5vw, 1.75rem);
    justify-items: center;
  }

  .hero-copy-stage {
    width: min(100%, 36rem);
    min-height: clamp(15rem, 23vw, 19rem);
    margin-inline: auto;
  }

  .hero-copy,
  .hero-intertitle {
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy::before {
    left: 50%;
    width: clamp(18rem, 56vw, 32rem);
    transform:
      translate3d(
        calc(-50% + var(--hero-copy-halo-x) * 0.42),
        calc(-44% + var(--hero-copy-halo-y) * 0.58),
        0
      )
      scale(var(--hero-copy-halo-scale));
  }

  .hero-description {
    margin-bottom: var(--space-5);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-proof-list {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-award__copy {
    flex: 1;
    justify-items: center;
    text-align: center;
  }

  .hero-intertitle {
    inset: 0;
    align-items: center;
  }

  .hero-visual {
    min-height: clamp(13rem, 30vw, 19rem);
    justify-content: center;
    align-items: flex-start;
  }

  .hero-book-stage {
    width: min(100%, 25rem);
    padding: 0;
  }

  .hero-actions {
    align-items: center;
    justify-content: center;
    width: min(100%, 34rem);
    margin-inline: auto;
    margin-top: calc(var(--space-2) * -1);
  }

  .hero-actions .button {
    min-height: 3.05rem;
    padding: 0.72rem 1.2rem;
    font-size: 1.18rem;
  }
}

@media (max-width: 48rem) {
  .hero-section {
    height: 140svh;
    min-height: 78rem;
  }

  .hero-copy-stage {
    min-height: 18rem;
  }

  .hero-intertitle {
    max-width: 21rem;
  }

  .hero-proof-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-award {
    flex-basis: min(100%, 14.75rem);
  }

  .section--books {
    margin-top: -3.5rem;
    padding-block: var(--space-12);
  }
}

@media (min-width: 64rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container-width));
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    position: relative;
    font-size: 1.55rem;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 0.12rem;
    background: transparent;
    transition: background-color var(--motion-fast) ease-out;
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after {
    background: var(--color-primary);
  }

  .social-links {
    padding-top: 0;
    margin-left: var(--space-2);
  }

  .hero-inner {
    grid-template-areas:
      "copy visual"
      "actions visual";
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: end;
    justify-items: stretch;
  }

  .hero-visual {
    justify-content: end;
    align-items: center;
    align-self: center;
  }

  .hero-book-stage {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hero-actions {
    justify-content: flex-start;
    width: auto;
    margin-inline: 0;
  }

  .author-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }

  .author-copy {
    max-width: 100%;
    padding-block: clamp(0.5rem, 1.5vw, 1.5rem);
  }

  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-card + .book-card {
    border-left: 1px solid rgba(17, 19, 24, 0.12);
    padding-left: clamp(1.25rem, 2.2vw, 1.85rem);
  }

  .quotes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .book-card {
    grid-template-columns: minmax(16.8rem, 22.4rem) minmax(0, 1.18fr);
    align-items: stretch;
    gap: clamp(0.2rem, 0.45vw, 0.5rem);
  }

  .book-card__media {
    align-self: center;
  }

  .book-card__content {
    align-self: stretch;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto auto;
    gap: 0.65rem;
  }

  .section--books > .container {
    width: min(calc(100% - 3rem), 102rem);
  }

  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-carousel .news-card {
    flex-basis: calc((100% - (2 * var(--news-gap))) / 3);
  }

  .section--news .section-heading h2 {
    max-width: none;
    white-space: nowrap;
  }

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

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 84rem) {
  .section--books .books-grid {
    grid-template-columns: 1fr;
  }

  .section--books .book-card {
    max-width: min(100%, 56rem);
    margin-inline: auto;
  }

  .section--books .book-card + .book-card {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(17, 19, 24, 0.12);
    padding-top: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 72rem) {
  .section--books .book-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    max-width: min(100%, 40rem);
  }

  .section--books .book-card__media {
    min-height: 0;
  }

  .section--books .book-card__content {
    display: flex;
    align-self: auto;
    width: min(100%, 31rem);
    margin-inline: auto;
  }

  .section--books .book-card__cover {
    width: min(100%, 24.8rem);
  }
}

@media (max-width: 30rem) {
  .hero-copy h1 {
    font-size: 3.55rem;
  }

  .news-carousel__button--prev {
    left: 0.45rem;
  }

  .news-carousel__button--next {
    right: 0.45rem;
  }

  .hero-book-image {
    width: min(100%, 21rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    max-width: 100%;
  }
}

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

  .hero-section {
    height: auto;
    min-height: 100svh;
  }

  .hero-frame {
    position: relative;
  }

  .hero-backdrop,
  .hero-copy,
  .hero-actions,
  .hero-tagline,
  .hero-description,
  .hero-proof-list,
  .hero-book-stage,
  .hero-book-image {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
