:root {
  --bg: #070708;
  --bg-raised: #0e0f12;
  --charcoal: #16181d;
  --ink: #e8e2d6;
  --muted: #9a948a;
  --stone: #c4bfb6;
  --gold: #b89a5e;
  --gold-soft: rgba(184, 154, 94, 0.16);
  --gold-line: rgba(184, 154, 94, 0.28);
  --crimson: #8f2d2d;
  --crimson-bright: #c44545;
  --crimson-soft: rgba(143, 45, 45, 0.22);
  --line: rgba(196, 191, 182, 0.12);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --radius: 2px;
  --header-h: 4.5rem;
  --shell: 68rem;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.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: -4rem;
  z-index: 30;
  padding: 0.6rem 0.9rem;
  background: var(--gold);
  color: #140f08;
  font-weight: 600;
}

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

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(16px);
  transition: border-color 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 8, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand__crest {
  width: 2.85rem;
  height: 2.85rem;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--stone);
}

.social-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--stone);
  border: 1px solid rgba(196, 191, 182, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-link svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.icon-link:hover,
.icon-link:focus-visible {
  color: var(--gold);
  background: var(--gold-soft);
  border-color: var(--gold-line);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--stone);
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  margin: 0 auto;
  background: currentColor;
}

.nav-toggle__bars {
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -5px;
}

.nav-toggle__bars::after {
  top: 5px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

body.nav-open {
  overflow: hidden;
}

.nav-panel {
  border-top: 1px solid var(--line);
  background: #0b0c0f;
}

.nav-panel__inner {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 1.25rem 1rem;
}

.nav-panel__inner a {
  padding: 0.75rem 0.4rem;
  color: var(--stone);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--line);
}

.nav-panel__inner a:last-child {
  border-bottom: 0;
}

.nav-panel__inner a:hover,
.nav-panel__inner a:focus-visible {
  color: var(--gold);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--header-h));
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 191, 182, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 191, 182, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 18%, transparent 72%);
}

.hero__glow {
  position: absolute;
  width: 55%;
  height: 80%;
  top: 10%;
  filter: blur(8px);
}

.hero__glow--west {
  left: -8%;
  background: radial-gradient(ellipse at center, rgba(184, 154, 94, 0.16), transparent 68%);
}

.hero__glow--east {
  right: -8%;
  background: radial-gradient(ellipse at center, rgba(143, 45, 45, 0.2), transparent 68%);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(7, 7, 8, 0.72) 78%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.2), rgba(7, 7, 8, 0.88));
}

.map-frame {
  position: absolute;
  inset: 1.75rem 1.5rem;
}

.map-frame__corner {
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gold-line);
}

.map-frame__corner--tl {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}

.map-frame__corner--tr {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}

.map-frame__corner--bl {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}

.map-frame__corner--br {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}

.border-line {
  position: absolute;
  top: 1.75rem;
  bottom: 1.75rem;
  left: 50%;
  width: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.border-line__rule {
  flex: 1;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--gold) 12%,
    var(--crimson-bright) 50%,
    var(--gold) 88%,
    transparent
  );
  box-shadow: 0 0 18px rgba(196, 69, 69, 0.35);
  animation: border-pulse 6s ease-in-out infinite;
}

.border-line__seal {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.35rem 0;
  color: var(--gold);
  background: var(--bg);
  border: 1px solid var(--gold-line);
  box-shadow: 0 0 24px rgba(184, 154, 94, 0.18);
}

.border-line__seal svg {
  width: 1.2rem;
  height: 1.2rem;
}

.border-line__label {
  position: absolute;
  top: auto;
  bottom: 4.5rem;
  left: 1.35rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.7;
}

.keep {
  position: absolute;
  bottom: 8%;
  width: min(28vw, 17rem);
  opacity: 0.28;
}

.keep--west {
  left: 6%;
  color: var(--gold);
}

.keep--east {
  right: 6%;
  color: var(--crimson-bright);
}

.hero__content {
  position: relative;
  max-width: 46rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--gold-line);
  background: rgba(7, 7, 8, 0.55);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wordmark-hero {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.22em;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 8.2vw, 6.1rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0.045em;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.wordmark-hero__siege,
.wordmark-hero__craft {
  min-width: 5.05em;
}

.wordmark-hero__siege {
  color: var(--stone);
  text-align: right;
}

.wordmark-hero__craft {
  color: var(--crimson-bright);
  text-align: left;
}

.hero__headline {
  margin-top: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__lede {
  margin: 1.15rem auto 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease,
    transform 160ms ease, box-shadow 160ms ease;
}

.button--primary {
  background: linear-gradient(180deg, #c4a36a, var(--gold));
  color: #161108;
  box-shadow: 0 8px 24px rgba(184, 154, 94, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #d4b57a;
  transform: translateY(-1px);
}

.button--ghost {
  background: rgba(7, 7, 8, 0.45);
  color: var(--stone);
  border-color: var(--gold-line);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-soft);
}

.identity {
  padding: 5.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(22, 24, 29, 0.55), transparent 40%),
    var(--bg);
}

.identity__grid {
  display: grid;
  gap: 1.35rem;
  max-width: 48rem;
}

.identity h2,
.coming-soon h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.section-kicker {
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.identity__copy {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.traits {
  padding: 3rem 0 5.5rem;
}

.trait-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.trait {
  flex: 1 1 10.75rem;
  max-width: 16.5rem;
  padding: 1.35rem 1.15rem 1.4rem;
  background: linear-gradient(180deg, rgba(22, 24, 29, 0.9), rgba(10, 11, 14, 0.92));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(232, 226, 214, 0.04), var(--shadow);
}

.trait__icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
}

.trait__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.trait h3 {
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trait p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.coming-soon {
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.coming-soon__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 38rem;
  text-align: center;
}

.coming-soon__crest {
  width: 10.5rem;
  height: 10.5rem;
  margin-bottom: 1.5rem;
  object-fit: cover;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.coming-soon__copy {
  margin: 1rem 0 1.75rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050506;
  padding: 1.75rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 3.1rem;
  height: 3.1rem;
  object-fit: contain;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-brand__tag {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.footer-links a {
  color: var(--stone);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@keyframes border-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .keep {
    width: min(34vw, 12rem);
    opacity: 0.12;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 1.5rem, var(--shell));
  }

  .social-nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .brand__name {
    letter-spacing: 0.18em;
  }

  .hero {
    padding: 3.25rem 0 4rem;
    min-height: auto;
  }

  .map-frame,
  .keep,
  .border-line__label {
    display: none;
  }

  .border-line {
    top: 0;
    bottom: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .trait {
    flex-basis: 100%;
    max-width: none;
  }

  .hero__actions {
    flex-direction: column;
  }

  .coming-soon__crest {
    width: 8.25rem;
    height: 8.25rem;
  }

  .button {
    width: 100%;
  }

  .wordmark-hero {
    letter-spacing: 0.04em;
  }
}

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

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

  .button--primary:hover,
  .button--primary:focus-visible {
    transform: none;
  }
}

/* Single-screen coming-soon layout */
.site-header,
.site-footer,
main#main > .hero,
main#main > .identity,
main#main > .traits,
main#main > .coming-soon {
  display: none !important;
}

body {
  background: #080807;
}

.minimal-coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 2rem 1.25rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(135, 96, 45, 0.12), transparent 32rem),
    linear-gradient(145deg, #0a0a09 0%, #11100e 48%, #090909 100%);
}

.minimal-coming-soon::before,
.minimal-coming-soon::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.minimal-coming-soon::before {
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(196, 168, 107, 0.18);
}

.minimal-coming-soon::after {
  inset: 1.6rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.minimal-coming-soon__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.minimal-coming-soon__backdrop::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(206, 177, 113, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206, 177, 113, 0.04) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, transparent, black 35%, black 70%, transparent);
}

.minimal-coming-soon__orb {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.32;
}

.minimal-coming-soon__orb--gold {
  top: -19rem;
  left: 50%;
  background: radial-gradient(circle, rgba(190, 148, 67, 0.24), transparent 68%);
  transform: translateX(-70%);
}

.minimal-coming-soon__orb--red {
  right: -18rem;
  bottom: -19rem;
  background: radial-gradient(circle, rgba(144, 48, 40, 0.2), transparent 68%);
}

.minimal-coming-soon__line {
  position: absolute;
  top: 50%;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 171, 105, 0.28), transparent);
  opacity: 0.65;
}

.minimal-coming-soon__line--one {
  left: -14vw;
  transform: rotate(-17deg);
}

.minimal-coming-soon__line--two {
  right: -14vw;
  transform: rotate(17deg);
}

.minimal-coming-soon__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 42rem);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.minimal-coming-soon__crest {
  width: clamp(5.5rem, 13vw, 7.5rem);
  height: clamp(5.5rem, 13vw, 7.5rem);
  margin-bottom: 1.75rem;
  border: 1px solid rgba(204, 173, 102, 0.48);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 0.6rem rgba(204, 173, 102, 0.035), 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
}

.minimal-coming-soon__eyebrow {
  margin-bottom: 1rem;
  color: #c6a96c;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.minimal-coming-soon h1 {
  color: #f3eee5;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-shadow: 0 0.3rem 1.8rem rgba(0, 0, 0, 0.5);
}

.minimal-coming-soon__tagline {
  max-width: 35rem;
  margin-top: 1.5rem;
  color: #d3c8b7;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.025em;
  line-height: 1.55;
}

.minimal-coming-soon__copy {
  max-width: 28rem;
  margin-top: 0.85rem;
  color: #938b80;
  font-size: 0.98rem;
  line-height: 1.6;
}

.minimal-coming-soon__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2.25rem;
}

.minimal-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.7rem;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border: 1px solid rgba(196, 191, 182, 0.16);
  border-radius: 999px;
  color: #cbc3b7;
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease,
    transform 160ms ease;
}

.minimal-social__icon {
  display: grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.minimal-social__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.minimal-social:hover,
.minimal-social:focus-visible {
  border-color: rgba(184, 154, 94, 0.55);
  color: #f0d28b;
  background: rgba(184, 154, 94, 0.1);
  transform: translateY(-1px);
}

.minimal-social.is-placeholder {
  cursor: not-allowed;
  opacity: 0.55;
}

.minimal-social.is-placeholder:hover,
.minimal-social.is-placeholder:focus-visible {
  border-color: rgba(196, 191, 182, 0.16);
  color: #cbc3b7;
  background: rgba(255, 255, 255, 0.035);
  transform: none;
}

.minimal-coming-soon__footnote {
  margin-top: 2.75rem;
  color: rgba(196, 191, 182, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .minimal-coming-soon {
    padding: 2rem 1rem;
  }

  .minimal-coming-soon::before {
    inset: 0.75rem;
  }

  .minimal-coming-soon::after {
    inset: 1.15rem;
  }

  .minimal-coming-soon__tagline {
    max-width: 19rem;
  }

  .minimal-coming-soon__socials {
    width: min(100%, 21rem);
    gap: 0.55rem;
  }

  .minimal-social {
    flex: 1 1 calc(50% - 0.55rem);
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .minimal-social,
  .icon-link {
    transition: none;
  }

  .minimal-social:hover,
  .minimal-social:focus-visible {
    transform: none;
  }
}
