:root {
  color-scheme: light;
  --bg: #edf1f6;
  --bg-elevated: rgba(255, 255, 255, 0.82);
  --bg-strong: #ffffff;
  --text: #1e2833;
  --muted: #5f6f7f;
  --line: rgba(24, 38, 56, 0.12);
  --line-strong: rgba(24, 38, 56, 0.2);
  --primary: #11314f;
  --secondary: #d9e4ef;
  --accent: #b86d32;
  --accent-soft: rgba(184, 109, 50, 0.14);
  --shadow: 0 24px 70px rgba(17, 35, 56, 0.12);
  --radius-lg: 1.75rem;
  --radius-md: 1.1rem;
  --radius-sm: 0.8rem;
  --container: 76rem;
  --display-font: Baskerville, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #08121f;
  --bg-elevated: rgba(12, 23, 38, 0.82);
  --bg-strong: #0f1c2c;
  --text: #f0f5fb;
  --muted: #adbac9;
  --line: rgba(202, 220, 242, 0.12);
  --line-strong: rgba(202, 220, 242, 0.22);
  --primary: #d9e4ef;
  --secondary: #12263a;
  --accent: #de8b4c;
  --accent-soft: rgba(222, 139, 76, 0.16);
  --shadow: 0 32px 90px rgba(1, 6, 14, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  margin: 0;
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top left, rgba(101, 143, 190, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(184, 109, 50, 0.14), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 90%, #ffffff 10%) 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: clip;
}

main:focus {
  outline: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(transparent 96%, rgba(255, 255, 255, 0.1) 96%),
    linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.08) 96%);
  background-size: 100% 14px, 14px 100%;
  mix-blend-mode: soft-light;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--accent) 65%, transparent 35%);
  text-underline-offset: 0.2em;
}

button,
a.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--bg);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--dimmed {
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--secondary) 70%, transparent 30%) 100%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.section-heading h1,
.section-heading h2,
.hero h1,
.intro-band h2,
.book-card h3,
.panel h3,
.contact-card h2,
.guestbook-card h2 {
  font-family: var(--display-font);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 78%, transparent 22%);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
}

.brand {
  display: inline-grid;
  gap: 0.15rem;
  text-decoration: none;
}

.brand__eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.brand__title {
  font-family: var(--display-font);
  font-size: 1.6rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.site-nav a,
.theme-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 1rem;
  background: color-mix(in srgb, var(--bg-strong) 74%, transparent 26%);
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.site-nav a:hover,
.theme-toggle:hover,
.menu-toggle:hover,
.button:hover,
.network-list a:hover,
.gallery-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.theme-toggle,
.menu-toggle {
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.98fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__copy {
  padding-block: 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 11ch;
}

.hero__lead {
  font-size: 1.18rem;
  max-width: 45rem;
  color: var(--text);
}

.hero__text {
  max-width: 42rem;
  color: var(--muted);
}

.hero__actions,
.button-row,
.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 76%, #ffffff 24%));
  color: #fffaf5;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 35%, transparent 65%);
}

.button--secondary {
  background: color-mix(in srgb, var(--secondary) 80%, var(--bg-strong) 20%);
  color: var(--text);
  border-color: var(--line);
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.hero__facts,
.book-stats,
.contact-list,
.legal-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__facts li,
.book-card__meta span {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 92%, transparent 8%);
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
}

.hero__stage {
  position: relative;
  min-height: 38rem;
}

.hero-portrait,
.hero-card,
.hero-book,
.intro-band__panel,
.book-card,
.gallery-detail__card,
.panel,
.gallery-card,
.contact-card,
.guestbook-card,
.legal-card,
.consent-banner {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-portrait {
  position: absolute;
  top: 0;
  right: 0.75rem;
  z-index: 1;
  width: min(18rem, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 0.35rem);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-card {
  position: absolute;
  top: 2rem;
  left: 0.5rem;
  z-index: 2;
  width: min(20rem, calc(100% - 4rem));
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.hero-card__label {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-card p:last-child {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.35rem;
  line-height: 1.3;
}

.hero-book {
  position: absolute;
  overflow: hidden;
  border-radius: 1.5rem;
}

.hero-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-book--one {
  left: 0.25rem;
  bottom: 4rem;
  width: 12rem;
  transform: rotate(-7deg);
}

.hero-book--two {
  left: 9rem;
  bottom: 0;
  z-index: 2;
  width: 12rem;
  transform: rotate(3deg);
}

.hero-book--three {
  right: 1rem;
  bottom: 3rem;
  z-index: 2;
  width: 9.75rem;
  transform: rotate(7deg);
}

.intro-band {
  padding: 1rem 0 0;
}

.intro-band__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1rem;
}

.intro-band__panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.intro-band__panel--accent {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent-soft) 75%, transparent 25%), transparent),
    var(--bg-elevated);
}

.books-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.book-card {
  display: grid;
  grid-template-columns: minmax(16rem, 18rem) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) + 0.2rem);
}

.book-card--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 18rem);
}

.book-card--reverse .book-card__media {
  order: 2;
}

.book-card__media {
  align-self: start;
}

.book-card__media img {
  width: 100%;
  border-radius: 1.3rem;
}

.book-card h3,
.panel h3,
.contact-card h2,
.guestbook-card h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.book-card__kicker {
  margin: 0 0 0.55rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.book-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
}

.book-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.1rem;
  margin-bottom: 1.2rem;
}

.archive-grid,
.network-grid {
  display: grid;
  gap: 1.5rem;
}

.panel,
.contact-card,
.guestbook-card,
.legal-card {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
}

.timeline {
  margin: 0;
  padding-left: 1.2rem;
}

.timeline li + li {
  margin-top: 1rem;
}

.timeline__date {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.quote-block {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--accent-soft) 55%, transparent 45%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  display: grid;
  gap: 0.75rem;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  text-decoration: none;
}

.gallery-card:focus-visible,
.gallery-back:focus-visible,
.reader-back:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 80%, #ffffff 20%);
  outline-offset: 4px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 0.25rem);
}

.gallery-card--cover img {
  aspect-ratio: 3 / 4;
}

.gallery-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-page {
  padding-bottom: 3.5rem;
}

.reader-page {
  padding-bottom: 3.5rem;
}

.reader-hero {
  position: relative;
  overflow: clip;
  padding: 4.5rem 0 3rem;
  min-height: 30rem;
}

.reader-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 58%, transparent 42%) 0%, color-mix(in srgb, var(--bg) 28%, transparent 72%) 48%, color-mix(in srgb, var(--bg) 66%, transparent 34%) 100%),
    url("../img/books/leseprobe-bg.jpg") center/cover no-repeat;
  opacity: 0.74;
}

.reader-hero__grid,
.reader-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}

.reader-hero__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 18rem);
  align-items: center;
}

.reader-hero__subtitle {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
}

.reader-hero__text {
  max-width: 42rem;
  color: var(--text);
}

.reader-hero__credit-wrap {
  position: absolute;
  inset-inline: 0;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.reader-hero__credit {
  display: inline-block;
  margin: 0;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-elevated) 94%, transparent 6%);
  color: var(--text);
  font-size: 0.82rem;
  pointer-events: auto;
}

.reader-hero__credit a {
  text-decoration-thickness: 1px;
}

.reader-hero__cover,
.reader-card {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.reader-hero__cover {
  overflow: hidden;
}

.reader-hero__cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.reader-hero__preview-image {
  display: none;
}

.reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.reader-layout {
  grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  align-items: start;
}

.reader-card {
  padding: 1.4rem;
}

.reader-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reader-card__head h2 {
  margin: 0.2rem 0 0;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.reader-card__eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.reader-inline-link {
  white-space: nowrap;
  font-weight: 700;
}

.reader-frame-shell {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 0.2rem);
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-strong) 92%, transparent 8%);
}

.reader-frame {
  display: block;
  width: 100%;
  min-height: 72rem;
  border: 0;
}

.reader-mobile-panel {
  display: none;
}

.reader-mobile-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 0.15rem);
  background: color-mix(in srgb, var(--bg-strong) 92%, transparent 8%);
}

.reader-mobile-preview img {
  width: 100%;
  height: auto;
}

.reader-back,
.gallery-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-elevated) 92%, transparent 8%);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.gallery-detail {
  display: grid;
  gap: 1.6rem;
}

.gallery-detail__heading {
  margin-bottom: 0;
}

.gallery-detail__card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: calc(var(--radius-lg) + 0.15rem);
}

.gallery-detail__media img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 0.15rem);
  border: 1px solid var(--line);
  background: var(--bg-strong);
}

.gallery-detail__content {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.gallery-detail__eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.gallery-detail__description {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text);
}

.reader-back:hover,
.gallery-back:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.network-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.network-list a {
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-elevated) 92%, transparent 8%);
  text-decoration: none;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-list li + li,
.legal-list li + li {
  margin-top: 0.55rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.site-footer__grid,
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.site-footer__grid {
  padding-bottom: 1.25rem;
}

.site-footer__title {
  margin: 0 0 0.45rem;
  font-family: var(--display-font);
  font-size: 1.6rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--muted);
}

.legal-page .legal-shell {
  padding: 4rem 0 5rem;
}

.legal-card + .legal-card {
  margin-top: 1rem;
}

.storage-table {
  display: grid;
  gap: 0.5rem;
}

.storage-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1.5fr;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.storage-table__row--head {
  font-weight: 700;
  background: color-mix(in srgb, var(--secondary) 78%, transparent 22%);
}

.consent-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  width: min(34rem, calc(100% - 2rem));
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.consent-banner__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--accent);
}

.consent-banner__content p:last-child {
  margin-top: 0;
  color: var(--muted);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 74rem) {
  .hero__grid,
  .intro-band__grid,
  .book-card,
  .book-card--reverse,
  .contact-grid,
  .reader-hero__grid,
  .reader-layout,
  .gallery-detail__card,
  .network-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .book-card--reverse .book-card__media {
    order: 0;
  }

  .hero__stage {
    min-height: 30rem;
  }

  .hero-portrait {
    width: 15rem;
    right: 0;
  }

  .hero-book--one {
    width: 11rem;
  }

  .hero-book--two {
    width: 11rem;
    left: 7rem;
  }

  .hero-book--three {
    width: 8rem;
  }

  .storage-table__row {
    grid-template-columns: 1fr;
  }

  .reader-card__head {
    flex-direction: column;
  }

  .reader-hero__credit-wrap {
    justify-content: flex-start;
  }

  .site-footer__grid,
  .site-footer__legal {
    flex-direction: column;
  }
}

@media (max-width: 52rem) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .theme-toggle {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .reader-hero {
    padding-top: 2.5rem;
    padding-bottom: 4.75rem;
    min-height: 0;
  }

  .reader-hero::before {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--bg) 52%, transparent 48%) 0%, color-mix(in srgb, var(--bg) 22%, transparent 78%) 42%, color-mix(in srgb, var(--bg) 60%, transparent 40%) 100%),
      url("../img/books/leseprobe-bg.jpg") center/cover no-repeat;
    opacity: 0.82;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .hero__stage {
    min-height: 30rem;
  }

  .reader-frame-shell {
    display: none;
  }

  .reader-mobile-panel {
    display: grid;
    gap: 1rem;
    padding-top: 0.5rem;
  }

  .reader-hero__cover-image {
    display: none;
  }

  .reader-hero__preview-image {
    display: block;
  }

  .reader-mobile-preview {
    display: none;
  }

  .reader-hero__credit-wrap {
    bottom: 0.9rem;
  }

  .reader-hero__credit {
    max-width: min(100%, 20rem);
    font-size: 0.78rem;
  }

  .reader-card--hint {
    order: 2;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: min(18rem, 100%);
    margin-bottom: 1rem;
  }

  .hero-portrait {
    position: relative;
    top: auto;
    right: auto;
    width: min(15rem, 72%);
    margin: 0 0 1rem auto;
  }

  .hero-book--one {
    left: 0;
    bottom: 1rem;
  }

  .hero-book--two {
    left: 6.2rem;
    bottom: 0;
  }

  .hero-book--three {
    right: 0;
    bottom: 1rem;
  }

  .book-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
