:root {
  --ink: #1a1410;
  --ink-soft: #2a221c;
  --paper: #f3eee6;
  --paper-deep: #e6dfd4;
  --vermilion: #c23b22;
  --vermilion-deep: #9e2f1b;
  --muted: #6b5e54;
  --max: 68rem;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-serif: "Literata", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--vermilion);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--vermilion-deep);
}

.visually-hidden {
  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 {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 0.25rem;
}

.skip-link:focus {
  top: 1rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  color: var(--paper);
  background:
    radial-gradient(ellipse 90% 70% at 70% 20%, rgba(194, 59, 34, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(194, 59, 34, 0.18), transparent 50%),
    linear-gradient(165deg, var(--ink) 0%, var(--ink-soft) 45%, #0f0c0a 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(243, 238, 230, 0.015) 11px,
      rgba(243, 238, 230, 0.015) 12px
    );
  pointer-events: none;
  animation: grain-drift 28s linear infinite;
}

@keyframes grain-drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-48px);
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2.25rem 0 2rem;
}

.hero__brand {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--paper);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__logo {
  width: 2.75rem;
  height: 2.75rem;
  max-width: 2.75rem;
  border-radius: 0.35rem;
  object-fit: cover;
  flex: 0 0 2.75rem;
}

.hero__brand span {
  display: block;
  white-space: nowrap;
}

@media (min-width: 720px) {
  .hero__logo {
    width: 3.25rem;
    height: 3.25rem;
    max-width: 3.25rem;
    flex-basis: 3.25rem;
  }
}

.hero__headline {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero__lede {
  margin: 0 0 1.15rem;
  max-width: none;
  font-size: 0.98rem;
  color: rgba(243, 238, 230, 0.78);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

@media (min-width: 720px) {
  .hero__actions {
    flex-wrap: nowrap;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.2rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--vermilion);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--vermilion-deep);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(243, 238, 230, 0.35);
}

.btn--ghost:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.btn--ghost-ink {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 20, 16, 0.28);
}

.btn--ghost-ink:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* —— Top bar (inner pages) —— */
.topbar {
  position: relative;
  z-index: 40;
  background: var(--ink);
  color: var(--paper);
}

.topbar__inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.topbar__brand {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--paper);
  text-decoration: none;
  min-width: 0;
  flex: 1 1 auto;
}

.topbar__brand:hover {
  color: var(--paper);
}

.topbar__logo {
  width: 2.15rem;
  height: 2.15rem;
  max-width: 2.15rem;
  border-radius: 0.3rem;
  object-fit: cover;
  flex: 0 0 2.15rem;
}

.topbar__brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(243, 238, 230, 0.28);
  border-radius: 0.35rem;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  flex: 0 0 auto;
}

.topbar__toggle:hover {
  background: rgba(243, 238, 230, 0.08);
}

.topbar__toggle:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

.topbar__toggle-bars,
.topbar__toggle-bars::before,
.topbar__toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.topbar__toggle-bars {
  position: relative;
}

.topbar__toggle-bars::before,
.topbar__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.topbar__toggle-bars::before {
  top: -6px;
}

.topbar__toggle-bars::after {
  top: 6px;
}

.topbar__toggle[aria-expanded="true"] .topbar__toggle-bars {
  background: transparent;
}

.topbar__toggle[aria-expanded="true"] .topbar__toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.topbar__toggle[aria-expanded="true"] .topbar__toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.topbar__nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  padding: 0.4rem;
  background: var(--ink-soft);
  border: 1px solid rgba(243, 238, 230, 0.14);
  border-radius: 0.45rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  font-size: 0.98rem;
  font-weight: 600;
}

.topbar__nav.is-open {
  display: flex;
}

.topbar__nav a {
  color: rgba(243, 238, 230, 0.9);
  text-decoration: none;
  padding: 0.85rem 0.95rem;
  border-radius: 0.3rem;
}

.topbar__nav a:hover {
  color: var(--paper);
  background: rgba(243, 238, 230, 0.08);
}

@media (min-width: 720px) {
  .topbar__toggle {
    display: none;
  }

  .topbar__brand {
    flex: 0 1 auto;
  }

  .topbar__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.92rem;
  }

  .topbar__nav a {
    padding: 0;
    border-radius: 0;
  }

  .topbar__nav a:hover {
    background: transparent;
  }
}


/* —— Inner pages —— */
.page {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 1.75rem 0 3rem;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.crumb a {
  color: var(--muted);
  text-decoration: none;
}

.crumb a:hover {
  color: var(--vermilion);
}

.page__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.05;
}

.page__lede {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: var(--muted);
}

.search-field {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  max-width: 24rem;
}

.search-field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.search-field__input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(26, 20, 16, 0.2);
  border-radius: 0.2rem;
}

.search-field__input::placeholder {
  color: rgba(107, 94, 84, 0.75);
}

.search-field__input:focus {
  outline: 2px solid var(--vermilion);
  outline-offset: 2px;
  border-color: var(--vermilion);
}

.page__cta {
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.city-index,
.cinema-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--paper-deep);
}

.city-index li,
.cinema-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--paper-deep);
}

.city-index li {
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.75rem;
}

.city-index li[hidden],
.cinema-list li[hidden],
.cinema-filter__list li[hidden] {
  display: none !important;
}

.city-index a,
.cinema-list__name {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}

.city-index a:hover,
.cinema-list__name:hover {
  color: var(--vermilion);
}

.cinema-list__addr {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.movie-results {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--paper-deep);
}

.movie-results li {
  border-bottom: 1px solid var(--paper-deep);
}

.movie-results__link {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0;
  color: var(--ink);
  text-decoration: none;
}

.movie-results__link:hover {
  color: var(--vermilion);
}

.movie-results__poster {
  width: 3rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 0.15rem;
  background: var(--paper-deep);
}

.movie-results__poster--empty {
  background: linear-gradient(145deg, var(--paper-deep), #d4cdc2);
}

.movie-results__title {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.02rem;
}

.cinema-results {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--paper-deep);
}

.cinema-results li {
  border-bottom: 1px solid var(--paper-deep);
}

.cinema-results__link {
  display: block;
  padding: 0.75rem 0;
  color: var(--ink);
  text-decoration: none;
}

.cinema-results__link:hover {
  color: var(--vermilion);
}

.cinema-results__title {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.02rem;
}

.cinema-results__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.movie-hero {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0 0 1.5rem;
}

.movie-hero__poster {
  width: 5.5rem;
  height: 8.25rem;
  object-fit: cover;
  border-radius: 0.15rem;
  background: var(--paper-deep);
}

.movie-hero__poster--empty {
  background: linear-gradient(145deg, var(--paper-deep), #d4cdc2);
}

.movie-hero .page__title {
  margin-bottom: 0.25rem;
}

.movie-hero .page__lede {
  margin-bottom: 0;
}

.cinema-filter {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--paper-deep);
  border-radius: 0.2rem;
}

.cinema-filter summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.cinema-filter summary::-webkit-details-marker {
  display: none;
}

.cinema-filter__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0.5rem;
}

.cinema-filter__toolbar .btn {
  min-height: 2.2rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.search-field--compact {
  margin-bottom: 0.65rem;
}

.cinema-filter__list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 14rem;
  overflow: auto;
}

.cinema-filter__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.35rem 0;
  font-size: 0.92rem;
  cursor: pointer;
}

.cinema-show-block {
  margin: 0 0 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--paper-deep);
}

.cinema-show-block__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
}

.cinema-show-block__title a {
  color: var(--ink);
  text-decoration: none;
}

.cinema-show-block__title a:hover {
  color: var(--vermilion);
}

.showtimes .section__title {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.day-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
}

.day-chip {
  appearance: none;
  margin: 0;
  min-height: 2.35rem;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(26, 20, 16, 0.18);
  border-radius: 0.2rem;
  cursor: pointer;
}

.day-chip:hover {
  border-color: var(--ink);
}

.day-chip.is-active {
  color: var(--paper);
  background: var(--vermilion);
  border-color: var(--vermilion);
}

.showtimes-hint {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.showtimes-status {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.occupancy-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper-deep);
  border-left: 3px solid var(--vermilion);
}

.occupancy-banner__label {
  flex: 1 1 10rem;
}

.occupancy-banner__buy {
  min-height: 2.2rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
}

.occupancy-banner.is-busy {
  font-weight: 500;
  color: var(--muted);
  border-left-color: rgba(26, 20, 16, 0.25);
}

.occupancy-banner.is-error {
  font-weight: 500;
  color: var(--muted);
  border-left-color: rgba(26, 20, 16, 0.25);
}

.show-block {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--paper-deep);
}

.show-block__poster {
  width: 4.5rem;
  height: 6.75rem;
  object-fit: cover;
  border-radius: 0.15rem;
  background: var(--paper-deep);
}

.show-block__poster--empty {
  background: linear-gradient(145deg, var(--paper-deep), #d4cdc2);
}

.show-block__body {
  min-width: 0;
}

.show-block__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.show-variant {
  margin: 0 0 0.7rem;
}

.show-variant:last-child {
  margin-bottom: 0;
}

.show-variant__label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.show-times {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.show-times li {
  margin: 0;
  padding: 0;
}

.time-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.35rem;
  padding: 0.35rem 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid rgba(26, 20, 16, 0.18);
  border-radius: 0.2rem;
  cursor: pointer;
}

.time-chip:hover {
  border-color: var(--ink);
}

.time-chip.is-selected {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

/* —— Sections —— */
.section {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0;
}

.section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.06em;
  font-weight: 400;
  line-height: 1;
}

.section__text {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--ink .section__text {
  color: rgba(243, 238, 230, 0.72);
}

.section--ink .section {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.feature-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.feature-list li {
  margin: 0;
  padding: 0;
}

.feature-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section--ink .feature-list p {
  color: rgba(243, 238, 230, 0.68);
}

/* —— App screenshots carousel —— */
.carousel {
  margin: 1.75rem 0 2rem;
}

.carousel__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 16rem) auto;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

@media (min-width: 720px) {
  .carousel__stage {
    grid-template-columns: auto minmax(0, 18rem) auto;
    gap: 0.75rem 1.25rem;
  }
}

.carousel__phone {
  position: relative;
  padding: 0.55rem;
  background: #0a0807;
  border: 1px solid rgba(243, 238, 230, 0.18);
  border-radius: 1.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 1rem;
  background: var(--paper);
  aspect-ratio: 1080 / 2220;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel__slide {
  margin: 0;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.carousel__nav {
  appearance: none;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1.5px solid rgba(243, 238, 230, 0.35);
  border-radius: 0.2rem;
  background: transparent;
  color: var(--paper);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.carousel__nav:hover {
  border-color: var(--paper);
  background: rgba(243, 238, 230, 0.08);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 1rem 0 0;
}

.carousel__dot {
  appearance: none;
  width: 0.55rem;
  height: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.1rem;
  background: rgba(243, 238, 230, 0.28);
  cursor: pointer;
}

.carousel__dot.is-active {
  background: var(--vermilion);
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track {
    transition: none;
  }
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--paper-deep);
  background: var(--paper-deep);
}

.site-footer__inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 1.75rem 0 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--vermilion);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
