:root {
  --feral-black: #05070A;      /* Abyss Black */
  --feral-midnight: #0B1C3F;   /* Midnight Blue */
  --feral-indigo: #1A1F4F;     /* Indigo Core */
  --feral-burgundy: #5A0F1C;   /* Burgundy Pulse */
  --feral-ice: #C7CBD6;        /* Muted Ice */

  --bg-main: var(--feral-black);
  --bg-alt: var(--feral-midnight);
  --bg-layer: var(--feral-indigo);

  --text-primary: #FFFFFF;
  --text-secondary: var(--feral-ice);
  --text-muted: rgba(199, 203, 214, 0.78);

  --accent: var(--feral-burgundy);
  --accent-rgb: 90, 15, 28;

  --gradient-deep: linear-gradient(135deg, #05070A 0%, #0B1C3F 100%);
  --gradient-card: linear-gradient(145deg, rgba(11, 28, 63, 0.72), rgba(26, 31, 79, 0.44));

  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --glow-accent: 0 0 20px rgba(90, 15, 28, 0.35);
  --glow-soft: 0 0 40px rgba(90, 15, 28, 0.15);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.28);
  --ak-mist: var(--feral-ice);
  --ak-red: var(--feral-burgundy);
  --ak-purple: #6C2BFF;

  --radius-card: 20px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(108, 43, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #030407 0%, #05070A 100%);
  color: var(--text-primary);
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

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

h1,h2,h3,h4,h5,h6 {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  transform: scaleY(0.8);
}

h1 { font-size: 18px; }
h2 { font-size: 16px; }
h3 { font-size: 15px; }
h4 { font-size: 14px; }
h5 { font-size: 13px; }
h6 { font-size: 12px; }

p {
  margin: 0;
}

ul, ol {
  margin: 0 0 1.1rem;
  padding-left: 0;
  list-style: none;
}

.feral-content-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.feral-content-wrap--narrow {
  max-width: 860px;
}

.feral-post-list,
.feral-post-grid {
  display: grid;
  gap: 24px;
}

.feral-post-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.archive-header {
  margin-bottom: 9px;
}

.archive-title,
.entry-title {
  margin: 0 0 16px;
}

.archive-description,
.entry-content {
  color: var(--text-secondary);
}

.entry-meta {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.feral-post-card {
  display: grid;
  gap: 16px;
}

.entry-thumbnail {
  overflow: hidden;
  border-radius: 16px;
}

.site-main {
  min-height: 60vh;
  flex: 1 0 auto;
}

/* ===============================
   BACKGROUND SYSTEM (ONLY MOTION)
   =============================== */

.bg-main { background: var(--bg-main); }
.bg-deep { background: var(--gradient-deep); }

.bg-slide {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    120deg,
    #05070A,
    #0B1C3F,
    #1A1F4F,
    #0B1C3F,
    #05070A
  );

  background-size: 300% 300%;
  animation: feralSlide 60s ease-in-out infinite;
}

.bg-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    140deg,
    transparent,
    rgba(90, 15, 28, 0.12),
    transparent
  );

  background-size: 200% 200%;
  animation: feralSlideReverse 90s linear infinite;

  pointer-events: none;
}

@keyframes feralSlide {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes feralSlideReverse {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===============================
   PLAYER NAV
   =============================== */
.feral-player-nav {
  position: fixed;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;

  width: min(92%, 720px);
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(5,7,10,0.80),
    rgba(11,28,63,0.60)
  );

  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: visible;

  /* 🔥 IMPORTANT */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Hidden (slide DOWN) */
.feral-player-nav.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(60px);
  pointer-events: none;
}

/* Visible */
.feral-player-nav:not(.is-hidden) {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===============================
   LINKS
   =============================== */
.nav-item {
  text-align: center;
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text-secondary);

  padding: 9px 0 12px 0;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;

  transition: 0.25s ease;
}

.nav-item:hover {
  color: var(--accent);
}

.nav-item svg {
  display: block;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-item:hover svg {
  transform: scale(1.15);
  opacity: 1;
}

/* ===============================
   CENTER ICON
   =============================== */
.nav-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-center img {
  width: 70px;
  height: 70px;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  z-index: 2;

  filter: drop-shadow(0 3px 9px rgba(0,0,0,0.6));
}

/* ===============================
   TEXT / ICON SWITCH
   =============================== */
.nav-icon {
  display: none;
}

.nav-text {
  display: inline-block;
}

/* MOBILE */
@media (max-width: 768px) {
  .feral-player-nav {
    bottom: 48px;
  }

  body:has(.site-footer) .feral-player-nav {
    bottom: 96px;
  }

  .feral-section-controls {
    top: 65%;
    transform: translateY(-65%);
  }

  .nav-item {
    padding: 9px 0;
  }

  .nav-text {
    display: none;
  }

  .nav-icon {
    display: inline-flex;
  }

  .nav-icon svg {
    width: 26px;
    height: 26px;
  }
}

/* feral sections */

html, body {
  scroll-behavior: smooth;
}

.feral-snap-section {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

/* Background layer */
.feral-snap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: inherit; /* keeps your bg-slide */

  filter: blur(8px);
  opacity: 0.6;

  transition: filter 0.9s ease, opacity 0.9s ease;
}

/* Active section (sharp background) */
.feral-snap-section.is-active::before {
  filter: blur(0);
  opacity: 1;
}

/* Keep content above */
.feral-snap-section > * {
  position: relative;
  z-index: 1;
}

.feral-section-controls {
  position: fixed;
  top: 70%;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.feral-section-control {
  width: 65px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(5, 7, 10, 0.88),
    rgba(11, 28, 63, 0.72)
  );
  color: var(--text-primary);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}

.feral-section-control:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.feral-section-control:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 820px) {
  .feral-section-controls {
    right: 16px;
    gap: 10px;
  }

  .feral-section-control {
    width: 58px;
    height: 58px;
  }
}

/* Initial hidden state */
#content {
  opacity: 0;
  filter: blur(18px);
  transform: scale(0.96);
}

/* When ready */
.feral-ready #content {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);

  transition: 
    opacity 2s ease,
    filter 2s ease,
    transform 2s ease;
}

/* ==========================================================================
   Admin Floating Icon Menu
   ========================================================================== */
.ak-admin-float{
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;

  display: flex;
  flex-direction: column;
  gap: 14px;

  padding: 14px;
  border-radius: 999px;

  background: rgba(6,7,11,.45);
  border: 1px solid rgba(255,216,77,.14);
  box-shadow: 0 10px 15px rgba(0,0,0,.45);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ak-admin-float__icon{
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  text-decoration: none;

  color: var(--ak-mist);
  background: rgba(11,28,63,.45);
  border: 1px solid rgba(233,236,245,.12);

  transition: all .25s ease;
}

@media (max-width: 820px) {
  .ak-admin-float {
    display: flex;
    top: 30%;
    transform: translateY(-30%);
  }
}

.ak-admin-float__icon:hover{
  background: linear-gradient(135deg, var(--ak-red) 0%, var(--ak-purple) 100%);
  border-color: rgba(255,216,77,.4);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
  transform: translateY(-2px);
}

.ak-admin-float__icon svg{
  pointer-events: none;
}

.ak-admin-float__icon--danger:hover{
  background: linear-gradient(135deg, #FF5252 0%, #7A43FF 100%);
}

/* Mobile adjust */
@media (max-width: 480px){
  .ak-admin-float{
    left: 12px;
    top: 30%;
    transform: translateY(-30%);
    padding: 10px;
  }
  .ak-admin-float__icon{
    width: 42px;
    height: 42px;
  }
}

/* ===============================
   HEADER
   =============================== */

.site-header {
  position: relative;
  z-index: 999;
  min-height: 64px;
  background: linear-gradient(
    135deg,
    rgba(5, 7, 10, 0.88),
    rgba(11, 28, 63, 0.68)
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.feral-header__inner {
  min-height: 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}

.feral-header__group {
  display: flex;
  align-items: center;
  min-width: 0;
}

.feral-header__group--left {
  justify-content: flex-start;
}

.feral-header__group--center {
  justify-content: center;
}

.feral-header__group--right {
  justify-content: flex-end;
}

.feral-header-links,
.feral-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feral-header-links a,
.feral-account-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 4px;
  color: var(--text-secondary);
  font-family: "Michroma", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.feral-header-links a:hover,
.feral-account-link:hover {
  color: var(--text-primary);
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feral-header-mark {
  width: auto;
  height: 60px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 3px 9px rgba(0,0,0,0.45));
}

.feral-cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text-secondary);
  font-family: "Michroma", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.feral-cart-pill:hover {
  background: rgba(5, 7, 10, 0.72);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.28);
}

.feral-cart-pill__icon {
  display: inline-flex;
}

.feral-cart-pill__icon svg {
  width: 16px;
  height: 16px;
}

.feral-cart-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.feral-app-launch {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(90, 15, 28, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(6, 9, 18, 0.985), rgba(5, 7, 10, 0.995));
  z-index: 4000;
  opacity: 1;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.feral-app-launch.is-exiting {
  opacity: 0;
  visibility: hidden;
}

.feral-app-launch__inner {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.feral-app-launch__mark {
  width: min(56vw, 220px);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.34));
}

.feral-app-launch__text {
  margin: 0;
  color: rgba(233, 236, 244, 0.8);
  font-family: "Michroma", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  text-align: center;
}

.feral-app-pill {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(90, 15, 28, 0.94), rgba(18, 28, 62, 0.92));
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(90, 15, 28, 0.28);
  color: var(--text-primary);
  font-family: "Michroma", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  z-index: 2600;
  pointer-events: none;
}

.feral-mobile-header-actions,
.feral-nav-toggle,
.primary-navigation {
  display: none;
}

.feral-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 78px 20px 24px;
  position: relative;
}

.feral-mobile-nav__close {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(90, 15, 28, 0.72);
  color: var(--text-primary);
  z-index: 2;
}

.feral-mobile-nav__close span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.feral-mobile-nav__close span:first-child {
  transform: rotate(45deg);
}

.feral-mobile-nav__close span:last-child {
  transform: rotate(-45deg);
}

.feral-mobile-nav__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0 0 8px;
  border: 0;
  background: transparent;
}

.feral-mobile-nav__brand img {
  width: auto;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.45));
}

.feral-mobile-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  font-family: "Michroma", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease;
}

.feral-mobile-nav a:hover,
.feral-mobile-nav a:focus-visible {
  color: var(--text-primary);
}

.feral-mobile-nav a:active {
  color: var(--text-primary);
  transform: scale(1.04);
  text-shadow:
    0 0 12px rgba(90, 15, 28, 0.7),
    0 0 18px rgba(90, 15, 28, 0.42);
}

@media (max-width: 820px) {
  body {
    --feral-mobile-nav-width: min(78vw, 304px);
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 54px;
  }

  .feral-header__inner {
    position: relative;
    min-height: 54px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 7px 16px;
  }

  .feral-header__group--left,
  .feral-header__group--right {
    display: none;
  }

  .feral-header__group--center {
    position: absolute;
    top: 50%;
    left: 50%;
    justify-content: center;
    min-width: 0;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .feral-header-mark {
    height: 54px;
  }

  .feral-mobile-header-actions {
    display: inline-flex;
    align-items: center;
  }

  .feral-mobile-header-actions--left {
    justify-content: flex-start;
  }

  .feral-mobile-header-actions--right {
    justify-content: flex-end;
    margin-left: auto;
  }

  .feral-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(5, 7, 10, 0.96);
    color: var(--text-primary);
    position: relative;
    z-index: 1300;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

  .feral-nav-toggle span:not(.screen-reader-text) {
    width: 16px;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .feral-cart-pill--header-mobile {
    display: inline-flex;
    min-height: 40px;
    padding: 0 10px;
    gap: 8px;
  }

  .feral-cart-pill--header-mobile .feral-cart-pill__label {
    display: none;
  }

  .primary-navigation {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--feral-mobile-nav-width);
    height: 100dvh;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(
      180deg,
      rgba(5, 7, 10, 0.96),
      rgba(11, 28, 63, 0.82)
    );
    transform: translateX(-100%);
    transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1180;
  }

  .primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .primary-navigation,
  .feral-mobile-nav,
  .feral-mobile-nav a {
    pointer-events: auto;
  }

  .feral-header__group--center,
  .feral-mobile-header-actions--right,
  .site-main,
  .site-footer,
  .feral-player-nav,
  .ak-admin-float {
    transition: transform 0.35s ease;
  }

  body.feral-mobile-menu-open {
    overflow: hidden;
  }

  body.feral-mobile-menu-open .feral-header__group--center,
  body.feral-mobile-menu-open .feral-mobile-header-actions--right,
  body.feral-mobile-menu-open .site-main,
  body.feral-mobile-menu-open .site-footer,
  body.feral-mobile-menu-open .feral-player-nav,
  body.feral-mobile-menu-open .ak-admin-float {
    transform: translateX(var(--feral-mobile-nav-width));
  }

}

/* ===============================
   BUTTONS (NO ANIMATION)
   =============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-primary);
  font-weight: 700;
  transition: 0.25s ease;
}

.btn:hover {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: var(--glow-accent);
  transform: translateY(-1px);
}

.btn-accent {
  border: none;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--glow-soft);
}

/* ===============================
   CARDS
   =============================== */

.card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  background: var(--gradient-card);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 36px);
}

.card:hover {
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34), var(--glow-soft);
}

/* ===============================
   FOOTER
   =============================== */

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-soft);
  background: rgba(5, 7, 10, 0.9);
}

.site-footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-footer__logo {
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 3px 9px rgba(0,0,0,0.4));
}

.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__nav .menu,
.feral-footer-menu-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav a {
  color: var(--text-secondary);
  font-family: "Michroma", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: color 0.25s ease;
}

.site-footer__nav a:hover,
.site-footer__account:hover {
  color: var(--text-primary);
}


@media (max-width: 820px) {
  .site-footer__brand {
    display: none;
  }

  .site-footer__nav {
    gap: 6px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px 24px;
  }

  .site-footer__nav,
  .site-footer__nav .menu,
  .feral-footer-menu-list {
    width: 100%;
    justify-content: center;
  }

  .site-footer__nav {
    justify-content: center;
  }
}

/* ===============================
   UTILITIES
   =============================== */

.highlight {
  color: var(--accent);
}

.feral-center {
  text-align: center;
}
