/* =========================================================
   EVCowboy.com - site.css
   Wild West Manga EV Frontier
   Mobile-friendly, high contrast, polished A+ version
   ========================================================= */

:root {
  --black: #100805;
  --coal: #170d09;
  --coal-2: #21120c;
  --brown: #3a2115;
  --leather: #6f3f22;
  --rust: #a94e24;
  --red: #9b241e;
  --sunset: #f28b2f;
  --gold: #ffd66f;
  --gold-2: #fff1bf;
  --cream: #fff3d6;
  --paper: #f4dfb9;
  --paper-2: #fff5dc;
  --blue: #00c8ff;
  --blue-2: #53f3ff;
  --ink: #130907;
  --muted: rgba(255, 243, 214, 0.82);
  --shadow: rgba(0, 0, 0, 0.56);
  --soft-shadow: rgba(0, 0, 0, 0.24);
  --line: rgba(255, 214, 111, 0.25);
  --max: 1180px;
}

/* ---------------- Base ---------------- */

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 2%, rgba(242, 139, 47, 0.28), transparent 30rem),
    radial-gradient(circle at 92% 8%, rgba(0, 200, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #150b07 0%, #24130c 45%, #0d0604 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
}

a {
  color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

a:hover,
a:focus {
  color: var(--blue-2);
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
label:focus {
  outline: 3px solid rgba(83, 243, 255, 0.55);
  outline-offset: 3px;
}

p {
  margin: 0 0 1.05rem;
}

strong,
b {
  color: #ffffff;
  font-weight: 900;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

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

/* ---------------- Top Kicker ---------------- */

.site-kicker {
  background:
    linear-gradient(90deg, #7d1917, var(--rust), var(--sunset), #b85a24);
  color: #fff9e8;
  text-align: center;
  font-weight: 950;
  letter-spacing: 0.055em;
  padding: 0.58rem 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ---------------- Header / Mobile Menu ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 8, 5, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255, 214, 111, 0.24);
  box-shadow: 0 10px 28px var(--shadow);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 5, 3, 0.98);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.68);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 1.5rem));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  min-width: 0;
}

.brand-title {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.35),
    0 0 18px rgba(0, 200, 255, 0.32);
}

.brand-tag {
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.menu-button {
  display: none;
  cursor: pointer;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(111, 63, 34, 1), rgba(58, 33, 21, 1));
  border: 1px solid rgba(255, 214, 111, 0.55);
  border-radius: 999px;
  padding: 0.75rem 0.95rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px var(--soft-shadow);
  user-select: none;
}

.menu-button span {
  display: inline-block;
  margin-left: 0.45rem;
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #fff8e7;
  text-decoration: none;
  font-weight: 850;
  font-size: 0.92rem;
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #071015;
  background: var(--gold);
  transform: translateY(-1px);
}

.main-nav a.is-active,
.main-nav a[aria-current="page"] {
  color: #071015;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-color: rgba(255, 255, 255, 0.4);
}

.main-nav a.featured-link {
  color: #031218;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.35);
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(16, 8, 5, 0.9)),
    var(--black);
  isolation: isolate;
}

.hero img,
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 28%, rgba(0, 200, 255, 0.13), transparent 25rem),
    radial-gradient(circle at 22% 14%, rgba(255, 214, 111, 0.11), transparent 24rem),
    linear-gradient(90deg, rgba(16, 8, 5, 0.91), rgba(16, 8, 5, 0.25), rgba(16, 8, 5, 0.78));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(16, 8, 5, 0.94));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.2rem, 9vw, 8rem) 0 clamp(3rem, 7vw, 5.4rem);
}

.eyebrow {
  display: inline-block;
  color: #081015;
  background: linear-gradient(90deg, var(--gold), var(--sunset));
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 950;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero h1 {
  max-width: 980px;
  margin: 1rem 0 0.8rem;
  color: #ffffff;
  font-size: clamp(3rem, 9vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.32),
    0 0 30px rgba(0, 200, 255, 0.24);
}

.hero .tagline {
  max-width: 800px;
  color: var(--cream);
  font-size: clamp(1.12rem, 2.35vw, 1.72rem);
  font-weight: 800;
  text-shadow: 0 3px 12px #000;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

/* ---------------- Buttons ---------------- */

.button,
.btn,
button {
  font: inherit;
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.08rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

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

.button-primary,
.btn-primary {
  color: #06131a;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 22px rgba(0, 200, 255, 0.35);
}

.button-primary:hover,
.btn-primary:hover {
  color: #06131a;
}

.button-secondary,
.btn-secondary {
  color: #150d08;
  background: linear-gradient(90deg, var(--gold), var(--sunset));
  box-shadow: 0 0 22px rgba(242, 139, 47, 0.26);
}

.button-secondary:hover,
.btn-secondary:hover {
  color: #150d08;
}

.button-ghost,
.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 214, 111, 0.56);
  background: rgba(0, 0, 0, 0.3);
}

.button-ghost:hover,
.btn-ghost:hover {
  color: var(--gold-2);
}

/* ---------------- Sections ---------------- */

.section {
  padding: clamp(3.2rem, 7vw, 6.5rem) 0;
}

.section-dark {
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 200, 255, 0.12), transparent 23rem),
    radial-gradient(circle at 88% 50%, rgba(242, 139, 47, 0.1), transparent 24rem),
    linear-gradient(180deg, #1a0e09, #100806);
}

.section-paper {
  color: #24120c;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 214, 111, 0.52), transparent 24rem),
    linear-gradient(180deg, rgba(255, 245, 220, 0.98), rgba(244, 223, 185, 0.98));
}

.section-paper h1,
.section-paper h2,
.section-paper h3,
.section-paper h4,
.section-paper strong,
.section-paper b {
  color: #120907;
}

.section-paper p {
  color: #3f2417;
}

.section-paper a {
  color: #711d16;
  font-weight: 850;
}

.section-paper a:hover,
.section-paper a:focus {
  color: #004b63;
}

.section-title {
  max-width: 920px;
  margin: 0 0 2rem;
}

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

.section-title h1,
.section-title h2 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.section-paper .section-title h1,
.section-paper .section-title h2 {
  color: #170d09;
}

.section-title p {
  color: rgba(255, 243, 214, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 650;
}

.section-paper .section-title p {
  color: #4b2817;
}

/* ---------------- Grids / Cards ---------------- */

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 214, 111, 0.09), rgba(0, 0, 0, 0.18)),
    rgba(38, 21, 14, 0.94);
  border: 1px solid rgba(255, 214, 111, 0.27);
  border-radius: 24px;
  box-shadow: 0 18px 44px var(--soft-shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 35%);
}

.card-content {
  position: relative;
  padding: 1.25rem;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 214, 111, 0.22);
}

.card h2,
.card h3 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  line-height: 1.08;
}

.card p {
  color: rgba(255, 243, 214, 0.84);
}

.card .meta {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Paper section card correction: keep cards dark and readable */
.section-paper .card p {
  color: rgba(255, 243, 214, 0.86);
}

.section-paper .card h2,
.section-paper .card h3,
.section-paper .card strong {
  color: #ffffff;
}

.section-paper .card a {
  color: var(--gold);
}

.section-paper .card a:hover {
  color: var(--blue-2);
}

/* ---------------- Feature Blocks ---------------- */

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(255, 214, 111, 0.32);
  box-shadow: 0 24px 60px var(--shadow);
  background: #160c08;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy h2 {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-paper .feature-copy h2 {
  color: #170d09;
}

.feature-copy p {
  color: rgba(255, 243, 214, 0.88);
  font-size: 1.08rem;
}

.section-paper .feature-copy p {
  color: #3f2417;
}

.callout {
  margin: 1.5rem 0;
  padding: 1.15rem;
  color: #120907;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-left: 8px solid var(--blue);
  border-radius: 18px;
  font-weight: 850;
  box-shadow: 0 12px 28px var(--soft-shadow);
}

.callout strong {
  color: #120907;
}

/* ---------------- Panels ---------------- */

.panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 26px;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 214, 111, 0.08), rgba(0, 0, 0, 0.18)),
    rgba(28, 15, 10, 0.92);
  border: 1px solid rgba(255, 214, 111, 0.24);
  box-shadow: 0 18px 44px var(--soft-shadow);
}

.panel h3 {
  margin-top: 0;
}

.panel p {
  color: rgba(255, 243, 214, 0.86);
}

.section-paper .panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 237, 196, 0.75));
  color: #24120c;
  border-color: rgba(80, 38, 18, 0.2);
}

.section-paper .panel p {
  color: #3d2215;
}

.section-paper .panel strong,
.section-paper .panel h3 {
  color: #120907;
}

/* ---------------- Manga Episode List ---------------- */

.episode-list {
  display: grid;
  gap: 1rem;
  counter-reset: episode;
}

.episode {
  counter-increment: episode;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  color: var(--cream);
  background: rgba(255, 243, 214, 0.075);
  border: 1px solid rgba(255, 214, 111, 0.22);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.episode::before {
  content: counter(episode);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #081015;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(0, 200, 255, 0.32);
}

.episode h3 {
  margin: 0 0 0.25rem;
  color: #ffffff;
}

.episode p {
  margin: 0;
  color: rgba(255, 243, 214, 0.84);
}

.section-paper .episode {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(80, 38, 18, 0.2);
}

.section-paper .episode h3 {
  color: #120907;
}

.section-paper .episode p {
  color: #3d2215;
}

/* ---------------- Tables ---------------- */

.table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 214, 111, 0.25);
  box-shadow: 0 14px 34px var(--soft-shadow);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--cream);
  background: rgba(27, 18, 13, 0.95);
}

th,
td {
  padding: 0.88rem 1rem;
  border-bottom: 1px solid rgba(255, 214, 111, 0.16);
  text-align: left;
  vertical-align: top;
}

th {
  color: #110b08;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  font-weight: 950;
}

td {
  color: rgba(255, 243, 214, 0.9);
}

tr:nth-child(even) td {
  background: rgba(255, 214, 111, 0.045);
}

/* ---------------- Forms ---------------- */

form {
  display: grid;
  gap: 1rem;
}

label {
  color: #ffffff;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.9rem 1rem;
  color: #ffffff;
  background: #21120d;
  border: 1px solid rgba(255, 214, 111, 0.36);
  border-radius: 14px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(0, 200, 255, 0.42);
  border-color: var(--blue);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

/* ---------------- Footer ---------------- */

.site-footer {
  color: rgba(255, 243, 214, 0.84);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, #100805, #080403);
  border-top: 2px solid rgba(255, 214, 111, 0.25);
  padding: 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-logo {
  margin-top: 0.7rem;
  width: 180px;
  max-width: 100%;
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--blue-2);
}

/* ---------------- JS Polish ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible,
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #071015;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 24px rgba(0, 200, 255, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.image-error {
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(255, 214, 111, 0.16), rgba(0, 200, 255, 0.12)),
    #21120d;
  border: 2px dashed rgba(255, 214, 111, 0.5);
}

/* ---------------- Utility Classes ---------------- */

.center {
  text-align: center;
}

.lead {
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 650;
}

.small {
  font-size: 0.9rem;
}

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

.section-paper .gold {
  color: #7a2b12;
}

.blue {
  color: var(--blue-2);
}

.no-wrap {
  white-space: nowrap;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    min-height: 68px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: rgba(16, 8, 5, 0.99);
    border-bottom: 2px solid rgba(255, 214, 111, 0.28);
    box-shadow: 0 20px 32px var(--shadow);
  }

  .main-nav a {
    width: 100%;
    border-radius: 14px;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid rgba(255, 214, 111, 0.12);
  }

  .menu-toggle:checked ~ .main-nav {
    display: flex;
  }

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

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

  .feature-image {
    order: -1;
  }

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

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

@media (max-width: 640px) {
  .site-kicker {
    font-size: 0.76rem;
    padding: 0.5rem 0.75rem;
  }

  .container,
  .hero-content {
    width: min(100% - 1.2rem, var(--max));
  }

  .brand-title {
    font-size: 1.28rem;
  }

  .brand-tag {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(16, 8, 5, 0.16), rgba(16, 8, 5, 0.96)),
      radial-gradient(circle at 50% 18%, rgba(0, 200, 255, 0.14), transparent 20rem);
  }

  .hero h1 {
    font-size: clamp(2.65rem, 16.5vw, 5.2rem);
    letter-spacing: -0.06em;
  }

  .hero .tagline {
    font-size: 1.05rem;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button,
  .btn {
    width: 100%;
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .card-content {
    padding: 1rem;
  }

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

  .episode::before {
    width: 40px;
    height: 40px;
  }

  .section-title h1,
  .section-title h2,
  .feature-copy h2 {
    letter-spacing: -0.035em;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

/* ---------------- Reduced Motion ---------------- */

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------------- Print ---------------- */

@media print {
  body {
    color: #000;
    background: #fff;
  }

  .site-header,
  .site-kicker,
  .hero-actions,
  .actions,
  .site-footer,
  .back-to-top {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero img,
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 1rem 0;
  }

  a {
    color: #000;
  }

  .card,
  .panel,
  .callout,
  .episode {
    color: #000;
    background: #fff;
    box-shadow: none;
    border: 1px solid #999;
  }
}
