/* Coat of Armour Enterprises — dark gateway + subtle animated ambient */

:root {
  --ink: #14181f;
  --ink-soft: #2d3340;
  --paper: #faf8f5;
  --paper-2: #f3ede4;
  --paper-deep: #ebe4d8;
  --line: #e5dfd4;
  --line-strong: #d4cbc0;
  --gold: #8f6b42;
  --gold-mid: #b8956a;
  --gold-bright: #d4b896;
  --gold-soft: rgba(212, 184, 150, 0.22);
  --gold-glow: rgba(184, 149, 106, 0.18);
  --gold-muted: rgba(143, 107, 66, 0.35);
  --muted: #5c5f66;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 8px 28px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 0 0 1px rgba(212, 184, 150, 0.22), 0 0 36px rgba(212, 184, 150, 0.12), 0 18px 44px rgba(0, 0, 0, 0.5);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --on-dark: #eceae6;
  --on-dark-soft: rgba(236, 234, 230, 0.9);
  --on-dark-muted: rgba(210, 206, 200, 0.78);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-hover: rgba(255, 255, 255, 0.09);
  --panel-border: rgba(212, 184, 150, 0.24);
  --accent-blue: rgba(59, 130, 246, 0.14);
  --accent-violet: rgba(139, 92, 246, 0.1);
  --accent-teal: rgba(45, 212, 191, 0.09);
  --hairline: rgba(255, 255, 255, 0.1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #07090d;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: #07090d;
  background-image: radial-gradient(ellipse 100% 80% at 50% 100%, rgba(20, 24, 31, 0.9), #07090d 72%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
}

/* ——— Animated ambient (CSS only, low motion) ——— */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 70% at 50% -15%, rgba(212, 184, 150, 0.2), transparent 55%),
    radial-gradient(ellipse 80% 50% at 110% 20%, var(--accent-blue), transparent 45%),
    radial-gradient(ellipse 70% 45% at -10% 60%, var(--accent-violet), transparent 42%),
    radial-gradient(ellipse 90% 55% at 50% 105%, var(--accent-teal), transparent 50%),
    linear-gradient(165deg, #121a24 0%, #0d1018 38%, #0a0c11 100%);
  animation: ambient-base-shift 28s ease-in-out infinite alternate;
}

@keyframes ambient-base-shift {
  0% {
    filter: hue-rotate(0deg) saturate(1);
    opacity: 1;
  }
  50% {
    filter: hue-rotate(-6deg) saturate(1.08);
    opacity: 1;
  }
  100% {
    filter: hue-rotate(8deg) saturate(1.05);
    opacity: 1;
  }
}

.ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}

.ambient__blob--1 {
  width: min(72vw, 620px);
  height: min(72vw, 620px);
  background: radial-gradient(circle, rgba(96, 165, 250, 0.35) 0%, rgba(37, 99, 235, 0.12) 45%, transparent 70%);
  top: -12%;
  left: -8%;
  animation: blob-drift-a 32s ease-in-out infinite;
}

.ambient__blob--2 {
  width: min(65vw, 520px);
  height: min(65vw, 520px);
  background: radial-gradient(circle, rgba(212, 184, 150, 0.38) 0%, rgba(180, 130, 70, 0.12) 50%, transparent 68%);
  bottom: -18%;
  right: -12%;
  animation: blob-drift-b 38s ease-in-out infinite;
}

.ambient__blob--3 {
  width: min(48vw, 400px);
  height: min(48vw, 400px);
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 65%);
  top: 38%;
  left: 42%;
  animation: blob-drift-c 26s ease-in-out infinite;
}

@keyframes blob-drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(8%, 12%) scale(1.06);
  }
  70% {
    transform: translate(3%, 4%) scale(0.98);
  }
}

@keyframes blob-drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  45% {
    transform: translate(-10%, -8%) scale(1.05);
  }
  80% {
    transform: translate(-4%, -2%) scale(1.02);
  }
}

@keyframes blob-drift-c {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translate(-14%, 10%) scale(1.12);
    opacity: 0.65;
  }
}

.ambient__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 45%, transparent 35%, rgba(7, 9, 13, 0.55) 100%);
  opacity: 0.85;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(212, 184, 150, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 184, 150, 0.35) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 40%, black 12%, transparent 72%);
  animation: grid-pan 48s linear infinite;
}

@keyframes grid-pan {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(64px, 64px);
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.65rem 1.15rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8125rem;
  border-radius: 8px;
  z-index: 1000;
  text-decoration: none;
  border: 1px solid var(--gold-muted);
}
.skip-link:focus {
  top: 0.75rem;
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

.top-accent {
  position: relative;
  z-index: 2;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    #60a5fa 22%,
    var(--gold-bright) 48%,
    #2dd4bf 72%,
    var(--gold-mid) 100%
  );
  background-size: 220% 100%;
  animation: accent-flow 14s ease-in-out infinite;
}

@keyframes accent-flow {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
/* ——— Hero (text only; page background continues from body) ——— */
.hero {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #e8e4dc;
  padding-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 184, 150, 0.35), transparent);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(1.85rem, 4vw, 2.75rem);
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 184, 150, 0.92);
}
.hero__kicker-line {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-mid));
  border-radius: 1px;
  opacity: 0.95;
}
.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5.5vw, 3.15rem);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

.hero__title-sub {
  display: block;
  margin-top: 0.12em;
  font-weight: 500;
  font-style: italic;
  color: rgba(212, 184, 150, 0.88);
  letter-spacing: -0.02em;
}
.hero__lede {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  font-size: clamp(1rem, 2.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(220, 215, 206, 0.88);
}

.hero__note {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 156, 168, 0.95);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__logo-board {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(212, 184, 150, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero__logo {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}

.hero__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(212, 184, 150, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
@media (min-width: 520px) {
  .hero__facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero__fact {
  margin: 0;
  padding: 1rem 1.1rem;
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(212, 184, 150, 0.08);
}
@media (min-width: 520px) {
  .hero__fact {
    border-bottom: none;
    border-right: 1px solid rgba(212, 184, 150, 0.08);
  }
  .hero__fact:last-child {
    border-right: none;
  }
}

.hero__fact:last-child {
  border-bottom: none;
}

.hero__fact dt {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.hero__fact dd {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: #e8e4dc;
}

/* ——— Main (continuous with hero — no white panel) ——— */
.page-main {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: clamp(1.15rem, 3vw, 1.75rem);
  padding-bottom: clamp(2.25rem, 6vw, 3.5rem);
}

.page-main .container {
  padding-bottom: 0.25rem;
}

.page-lead {
  margin: 0 auto clamp(1.5rem, 4vw, 2rem);
  max-width: 52rem;
  text-align: center;
  font-size: clamp(0.9rem, 1.9vw, 1rem);
  line-height: 1.65;
  color: var(--on-dark-soft);
}

.section {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.section:last-of-type {
  margin-bottom: 0;
}

.section--tight {
  margin-bottom: clamp(1.5rem, 3.5vw, 2rem);
}

.section--tight .section__header {
  margin-bottom: 1.15rem;
  padding-bottom: 1.1rem;
}

.section__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

.section__header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(120px, 40%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-bright), transparent);
  border-radius: 1px;
  opacity: 0.85;
}

.section__header--center::after {
  left: 50%;
  transform: translateX(-50%);
  width: min(160px, 55%);
}

.section__header--center {
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.section__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}

.section__deck {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--on-dark-muted);
  max-width: 42rem;
}

.section__header--center .section__deck {
  margin-left: auto;
  margin-right: auto;
}

/* ——— Brands hub — one row of logos ——— */
.brands-hub {
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.brands-hub__header {
  position: relative;
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(0.5rem, 1.5vw, 0.85rem);
  padding-top: 0.25rem;
}

.brands-hub__header-deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 55vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold-mid), transparent);
  opacity: 0.9;
}

.brands-hub__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 184, 150, 0.9);
}

.brands-hub__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #faf8f5;
}

.brands-hub__title-line {
  display: inline;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
}

.brands-hub__title-line--script {
  display: inline;
  margin-left: 0.2em;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(115deg, #f8f4ee 0%, var(--gold-bright) 42%, #c4a574 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brands-hub__tagline {
  margin: 0 0 0.45rem;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--on-dark-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.brands-hub__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.brands-hub__stats li {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(236, 234, 230, 0.78);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 184, 150, 0.2);
  border-radius: 999px;
}

.brands-hub__stat-num {
  color: var(--gold-bright);
}

/* One horizontal row — logos share width */
.brands-float {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.2rem, 1vw, 0.65rem);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.15rem 0 0;
}

.brand-float {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: none;
  padding: 0.1rem 0.05rem 0;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: filter 0.3s ease;
}

.brand-float__spin {
  display: flex;
  justify-content: center;
  width: 100%;
  animation: brand-orbit 22s linear infinite;
  will-change: transform;
}

.brand-float:nth-child(2) .brand-float__spin {
  animation-duration: 26s;
  animation-direction: reverse;
}

.brand-float:nth-child(3) .brand-float__spin {
  animation-duration: 19s;
}

.brand-float:nth-child(4) .brand-float__spin {
  animation-duration: 24s;
  animation-direction: reverse;
}

.brand-float:nth-child(5) .brand-float__spin {
  animation-duration: 21s;
}

@keyframes brand-orbit {
  to {
    transform: rotate(360deg);
  }
}

.brand-float__disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.65rem, 12.5vw, 5.25rem);
  height: clamp(2.65rem, 12.5vw, 5.25rem);
  padding: clamp(0.2rem, 1vw, 0.45rem);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.12), rgba(10, 12, 18, 0.94) 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    background 0.3s ease;
}

.brand-float__disc img {
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.55));
  transition: filter 0.3s ease;
}

.brand-float__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
  max-width: 100%;
}

.brand-float__name {
  font-family: var(--font-serif);
  font-size: clamp(0.5rem, 2.1vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(250, 248, 245, 0.92);
  line-height: 1.15;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  max-width: 100%;
}

.brand-float__visit {
  font-size: clamp(0.45rem, 1.4vw, 0.5625rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 184, 150, 0.55);
  transition:
    color 0.25s ease,
    letter-spacing 0.25s ease;
}

.brand-float:hover {
  z-index: 4;
}

.brand-float:hover .brand-float__spin {
  animation-play-state: paused;
}

.brand-float:hover .brand-float__disc {
  transform: scale(1.08);
  border-color: rgba(212, 184, 150, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(212, 184, 150, 0.25),
    0 0 36px rgba(212, 184, 150, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.5);
}

.brand-float:hover .brand-float__disc img {
  filter: drop-shadow(0 4px 14px rgba(212, 184, 150, 0.35));
}

.brand-float:hover .brand-float__name {
  color: #fffdf9;
}

.brand-float:hover .brand-float__visit {
  color: var(--gold-bright);
  letter-spacing: 0.22em;
}

.brand-float:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ——— One-screen compact gateway ——— */
html.gateway-compact {
  min-height: 100dvh;
  overflow-x: hidden;
}

html.gateway-compact body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

html.gateway-compact .hero {
  flex: 0 0 auto;
  padding-bottom: clamp(0.45rem, 1.2vw, 0.85rem);
}

html.gateway-compact .hero__inner {
  padding-top: clamp(0.55rem, 1.5vw, 1rem);
}

html.gateway-compact .hero__grid {
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

html.gateway-compact .hero__kicker {
  margin-bottom: 0.45rem;
  font-size: 0.625rem;
}

html.gateway-compact .hero__title {
  margin-bottom: 0.45rem;
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
}

html.gateway-compact .hero__lede {
  margin-bottom: 0.4rem;
  font-size: clamp(0.75rem, 1.8vw, 0.9375rem);
  line-height: 1.4;
}

html.gateway-compact .hero__note {
  font-size: 0.625rem;
}

html.gateway-compact .hero__aside {
  gap: 0.55rem;
}

html.gateway-compact .hero__logo-board {
  padding: 0.55rem 0.7rem;
}

html.gateway-compact .hero__logo {
  max-width: min(200px, 42vw);
}

html.gateway-compact .hero__fact {
  padding: 0.45rem 0.55rem;
}

html.gateway-compact .hero__fact dt {
  margin-bottom: 0.15rem;
  font-size: 0.5625rem;
}

html.gateway-compact .hero__fact dd {
  font-size: 0.6875rem;
}

html.gateway-compact .page-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: 0.35rem;
  padding-bottom: 0.25rem;
}

html.gateway-compact .page-main .container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

html.gateway-compact .brands-hub {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  margin-bottom: 0.25rem;
}

html.gateway-compact .site-footer {
  flex: 0 0 auto;
  margin-top: 0.25rem;
  padding-top: 0.45rem;
}

html.gateway-compact .site-footer__row {
  margin-bottom: 0.35rem;
}

html.gateway-compact .site-footer__meta {
  font-size: 0.625rem;
  line-height: 1.3;
}
.site-footer {
  margin-top: clamp(1.35rem, 3vw, 2rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--hairline);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(200px, 50%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-bright), transparent);
  border-radius: 0 0 2px 2px;
  opacity: 0.9;
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 0.75rem;
}

.site-footer__wordmark {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--on-dark);
  letter-spacing: -0.01em;
}

.site-footer__primary {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.site-footer__meta {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(200, 196, 190, 0.72);
  max-width: 52rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body {
    background-attachment: scroll;
  }

  .ambient__base,
  .ambient__blob,
  .ambient__grid,
  .top-accent {
    animation: none !important;
  }

  .ambient__base {
    filter: none;
  }

  .ambient__blob {
    transform: none !important;
    opacity: 0.35;
  }

  .ambient__grid {
    transform: none;
  }

  .top-accent {
    background-position: 50% center;
  }

  .brand-float__spin {
    animation: none !important;
    transform: none;
  }

  .brand-float:hover .brand-float__spin {
    animation: none;
  }

  .brand-float:hover .brand-float__disc {
    transform: none;
  }
}