:root {
  --ink: #07090e;
  --ink-raised: #10151d;
  --ink-soft: #18202b;
  --paper: #f3ece1;
  --paper-dim: #cfc6b6;
  --muted: #9b9386;
  --gold: #d4ae5c;
  --gold-soft: rgba(212, 174, 92, 0.18);
  --line: rgba(243, 236, 225, 0.12);
  --line-strong: rgba(243, 236, 225, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 2px;
  --header-h: 76px;
  --max: 1180px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--paper);
  background: var(--ink);
  line-height: 1.65;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.btn {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 14px;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
}

.kicker::before,
.kicker::after,
.site-footer h3::before,
.site-footer h3::after,
.card-body h3::before,
.card-body h3::after,
.tile-body h3::before,
.tile-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border: 1px solid var(--gold);
  background: rgba(212, 174, 92, 0.08);
  pointer-events: none;
}

.kicker::after,
.site-footer h3::after,
.card-body h3::after,
.tile-body h3::after {
  transform: rotate(45deg);
}

.hero .kicker::before,
.hero .kicker::after {
  width: 10px;
  height: 10px;
  margin-top: -5px;
}

.hero .kicker {
  padding-left: 22px;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--paper);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  color: var(--paper-dim);
}

.lede {
  font-size: 1.08rem;
  max-width: 62ch;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(7, 9, 14, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 0;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
  isolation: isolate;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  background: rgba(212, 174, 92, 0.06);
  pointer-events: none;
}

.logo-mark::after {
  transform: rotate(45deg);
}

.logo-text {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a:not(.btn),
.nav-menu-trigger {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-dim);
  position: relative;
}

.nav-links > a:not(.btn)::after,
.nav-menu-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links > a:not(.btn):hover,
.nav-links > a:not(.btn):focus-visible,
.nav-links > a[aria-current="page"],
.nav-menu-trigger:hover,
.nav-menu-trigger:focus-visible,
.nav-menu-trigger[aria-current="page"] {
  color: var(--paper);
}

.nav-links > a:not(.btn):hover::after,
.nav-links > a:not(.btn):focus-visible::after,
.nav-menu-trigger:hover::after,
.nav-menu-trigger:focus-visible::after {
  transform: scaleX(1);
}

.nav-menu {
  position: relative;
}

.nav-menu-list {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 12px 0;
  background: #10141a;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 60;
}

.nav-menu-list li {
  list-style: none;
}

.nav-menu-list a {
  display: block;
  padding: 9px 18px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--paper-dim);
}

.nav-menu-list a:hover,
.nav-menu-list a:focus-visible,
.nav-menu-list a[aria-current="page"] {
  color: var(--paper);
  background: rgba(243, 236, 225, 0.04);
}

.nav-menu:hover .nav-menu-list,
.nav-menu:focus-within .nav-menu-list {
  display: block;
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--paper);
  color: var(--ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.06);
  animation: hero-drift 32s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.2%, 1.4%, 0);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(7, 9, 14, 0.18) 0%, rgba(7, 9, 14, 0.42) 62%, rgba(7, 9, 14, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 9, 14, 0.28) 0%, rgba(7, 9, 14, 0.08) 38%, rgba(7, 9, 14, 0.62) 100%);
}

.hero-content {
  padding: 80px 0 96px;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(2.85rem, 6.2vw, 4.9rem);
  font-style: italic;
  font-weight: 500;
  margin: 0 auto 22px;
  line-height: 1.12;
  filter: drop-shadow(0 0 20px rgba(212, 174, 92, 0.32));
}

.hero-line {
  color: #f3ead6;
  background-image: linear-gradient(180deg, #fbf6ea 0%, #ead7a6 70%, #e0c47a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-line-gold {
  background-image: linear-gradient(180deg, #ead07a 0%, #d4ae5c 55%, #c49a42 100%);
}

.hero .lede {
  font-size: 1.18rem;
  margin: 0 auto 36px;
  color: #d4cbb8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  min-width: 140px;
}

.hero-meta span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-meta strong {
  font-weight: 400;
  color: var(--paper);
  font-size: 0.95rem;
}

/* Sections */

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
}

.section-head a:hover,
.section-head a:focus-visible {
  border-bottom-color: var(--gold);
}

.section-head p {
  margin-top: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.72fr);
  gap: 64px;
  align-items: center;
}

.split-copy h2 {
  font-size: clamp(2.35rem, 4.5vw, 3.7rem);
  margin-bottom: 22px;
}

.split-copy p {
  font-size: 1.08rem;
}

.split-copy p + p {
  margin-top: 16px;
}

.split-figure {
  position: relative;
  width: min(100%, 380px);
  justify-self: end;
}

.split-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.95) contrast(1.04);
}

.split-figure::before,
.split-figure::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  background: rgba(212, 174, 92, 0.08);
  z-index: 1;
  pointer-events: none;
}

.split-figure::after {
  transform: rotate(45deg);
}

.panel {
  background: var(--ink-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.card-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-body h3,
.tile-body h3 {
  position: relative;
  padding-left: 20px;
}

.card-body p {
  font-size: 0.95rem;
}

.tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 12, 15, 0.1) 10%, rgba(10, 12, 15, 0.88) 100%);
}

.tile-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}

.tile-body p {
  color: var(--paper-dim);
  margin-top: 8px;
}

/* Legal pages */

.page-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 82% -10%, rgba(212, 174, 92, 0.12), transparent 42%),
    radial-gradient(ellipse at 8% 0%, rgba(70, 96, 140, 0.16), transparent 46%);
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 12px;
}

.page-hero h1.contact-heading {
  font-size: clamp(2.05rem, 4.2vw, 3.15rem);
  font-weight: 500;
  color: #cfc8bb;
}

.legal {
  padding: 64px 0 96px;
  max-width: 760px;
}

.legal h2 {
  font-size: 1.8rem;
  margin: 40px 0 12px;
}

.legal p,
.legal li {
  color: var(--paper-dim);
}

.legal a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
}

.legal a:hover,
.legal a:focus-visible {
  border-bottom-color: var(--gold);
}

.legal p + p {
  margin-top: 14px;
}

.legal ul {
  margin: 12px 0 0 20px;
}

.legal li + li {
  margin-top: 8px;
}

/* Contact form */

.form-wrap {
  max-width: 640px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 22px;
}

.contact-form[hidden],
.form-alert[hidden] {
  display: none !important;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: var(--ink-raised);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  margin-top: 8px;
}

.form-alert {
  padding: 16px 18px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
}

.form-alert p + p {
  margin-top: 8px;
}

.form-alert-ok {
  border-color: var(--gold);
  color: var(--paper);
}

.form-alert-err {
  border-color: #a66;
  color: #e4cfcf;
}

.contact-form .btn {
  width: fit-content;
  cursor: pointer;
}

/* Footer */

.site-footer {
  background: #07080a;
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 14px;
  max-width: 32ch;
  font-size: 0.92rem;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 18px;
}

.site-footer ul {
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: var(--paper-dim);
  font-size: 0.95rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
}

.footer-contact .btn {
  margin-top: 16px;
}

.footer-grid.footer-wide {
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr 1fr;
}

/* Imprints & catalogue */

.notice {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.imprint-index {
  grid-template-columns: repeat(3, 1fr);
}

.imprint-tile {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--ink-raised);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.imprint-tile:hover,
.imprint-tile:focus-visible {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.imprint-tile h3 {
  margin: 8px 0 12px;
}

.imprint-tile p {
  margin-top: auto;
  font-size: 0.95rem;
}

.catalogue-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
}

.catalogue-nav a {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.catalogue-nav a:hover,
.catalogue-nav a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.title-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.title-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--ink);
}

.cover {
  position: relative;
  aspect-ratio: 2 / 3;
  width: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(165deg, var(--cover-accent, var(--gold-soft)), transparent 55%),
    linear-gradient(180deg, #1c232d, #0c0f14);
  border: 1px solid var(--line-strong);
}

.cover::before,
.cover::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  background: rgba(212, 174, 92, 0.08);
  pointer-events: none;
}

.cover::after {
  transform: rotate(45deg);
}

.cover-label,
.cover-title {
  display: block;
}

.cover-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.cover-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--paper);
}

.title-card .format,
.album-card .format {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.title-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.title-card p {
  font-size: 0.92rem;
}

.cover-audio {
  aspect-ratio: 1;
}

.title-card:has(.cover-audio) {
  grid-template-columns: 148px 1fr;
}

.retailers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
}

.retailers a {
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.retailers a:hover,
.retailers a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.music-panel {
  background: #0e1116;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.album-card {
  border: 1px solid var(--line);
  background: var(--ink);
  padding: 16px;
}

.cover-album {
  aspect-ratio: 1;
  margin-bottom: 16px;
}

.album-card h3 {
  font-size: 1.35rem;
  margin: 8px 0;
}

.album-card p {
  font-size: 0.92rem;
}

.imprint-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 8px;
}

.imprint-switch a {
  color: var(--paper-dim);
  font-size: 0.92rem;
}

.imprint-switch a:hover,
.imprint-switch a:focus-visible,
.imprint-switch a[aria-current="page"] {
  color: var(--gold);
}

[data-imprint="urban-romantics"] { --cover-accent: #8a3d4a; }
[data-imprint="sovereign"] { --cover-accent: #c9a35a; }
[data-imprint="egoist-press"] { --cover-accent: #b9a078; }
[data-imprint="ambient"] { --cover-accent: #3e6e6a; }
[data-imprint="fractal-press"] { --cover-accent: #5c4a7a; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

/* Focus */

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 980px) {
  .split,
  .cards,
  .footer-grid,
  .imprint-index,
  .title-grid,
  .album-grid,
  .footer-grid.footer-wide {
    grid-template-columns: 1fr;
  }

  .split-figure {
    justify-self: center;
    width: min(100%, 300px);
  }

  .split-figure img {
    height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
  }

  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 12, 15, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 20px 24px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-menu {
    width: 100%;
  }

  .nav-menu-list {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    min-width: 0;
    padding: 6px 0 0 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero-content {
    padding: 56px 0 64px;
  }

  .section {
    padding: 72px 0;
  }

  .cards,
  .footer-grid {
    gap: 16px;
  }

  .title-card {
    grid-template-columns: 1fr;
  }

  .cover {
    max-width: 168px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img {
    animation: none;
    transform: none;
  }

  .card,
  .card-media img,
  .nav-links a::after,
  .btn {
    transition: none;
  }
}
