:root {
  color-scheme: dark;
  --bg: #070707;
  --bg-elevated: #101010;
  --panel: #141414;
  --panel-strong: #1b1b1b;
  --text: #f5f1ea;
  --muted: #a9aaa7;
  --muted-deep: #666866;
  --line: #2a2a2a;
  --line-soft: rgba(245, 241, 234, 0.12);
  --orange: #ff4d00;
  --gold: #ffb13b;
  --cyan: #67d7f0;
  --danger: #ff6b4a;
  --shadow-1: 0 16px 60px rgba(0, 0, 0, 0.34);
  --shadow-2: 0 28px 90px rgba(0, 0, 0, 0.44);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    "Source Han Sans SC",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(245, 241, 234, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 241, 234, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
  color: var(--text);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

::selection {
  background: rgba(255, 77, 0, 0.45);
  color: var(--text);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #303030;
  border: 3px solid #050505;
  border-radius: 12px;
}

.shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.section-grid {
  position: relative;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 7, 0.7);
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(245, 241, 234, 0.1);
  background: rgba(7, 7, 7, 0.9);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
}

.brand img {
  width: 178px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-link {
  min-width: 68px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--text);
  background: rgba(245, 241, 234, 0.055);
  border-color: rgba(245, 241, 234, 0.1);
}

.header-cta,
.button {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 170ms var(--ease),
    background 170ms ease,
    color 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.header-cta {
  color: #130804;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 177, 59, 0.18), 0 14px 30px rgba(255, 77, 0, 0.22);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
  background: var(--gold);
}

.button-primary {
  color: #130804;
  background: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 177, 59, 0.18), 0 18px 38px rgba(255, 77, 0, 0.2);
}

.button-ghost {
  color: var(--text);
  background: rgba(245, 241, 234, 0.04);
  border-color: rgba(245, 241, 234, 0.14);
}

.button-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 77, 0, 0.52);
  background: rgba(255, 77, 0, 0.08);
  color: var(--gold);
}

.button:active,
.header-cta:active {
  transform: translateY(0);
}

.button:focus-visible,
.header-cta:focus-visible,
.menu-toggle:focus-visible,
.filter-button:focus-visible,
.work-card:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 6px;
  background: rgba(245, 241, 234, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 72px 0 auto;
  z-index: 45;
  display: none;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
  background: rgba(7, 7, 7, 0.96);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  width: min(100% - 32px, 520px);
  margin: 0 auto;
  padding: 16px 0 20px;
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(245, 241, 234, 0.04);
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  padding: 132px 0 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 77, 0, 0.22), rgba(7, 7, 7, 0.48) 34%, rgba(7, 7, 7, 0.8) 100%),
    linear-gradient(180deg, transparent 0%, rgba(255, 77, 0, 0.08) 58%, transparent 100%),
    url("../assets/images/ai-bg-atmosphere.png");
  background-position: center;
  background-size: cover;
  mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(245, 241, 234, 0.026) 28px 29px),
    linear-gradient(180deg, rgba(7, 7, 7, 0.1), rgba(7, 7, 7, 0.86));
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 660px;
}

.kicker,
.section-label p,
.frame-top,
.contact-role {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-head h2,
.contact-copy h2 {
  margin: 0;
  color: var(--text);
  font-weight: 950;
  line-height: 1.3;
  text-wrap: pretty;
}

.hero h1 {
  margin-top: 28px;
  font-size: 92px;
  line-height: 1.24;
  padding-bottom: 0.08em;
}

.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.hero-showcase {
  min-width: 0;
}

.showcase-frame {
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 8px;
  background: #0e0e0e;
  box-shadow: var(--shadow-2);
}

.frame-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
  padding: 0 14px;
  color: var(--muted);
  font-size: 11px;
}

.image-stack {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 77, 0, 0.16), transparent 44%),
    #111;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0) 58%, rgba(7, 7, 7, 0.84) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.42), rgba(7, 7, 7, 0) 42%);
  pointer-events: none;
}

.ai-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  transform: scale(1.01);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 1px 0 0;
  padding: 0;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(245, 241, 234, 0.09);
}

.signal-strip div {
  padding: 18px 16px;
  background: rgba(12, 12, 12, 0.94);
}

.signal-strip dt,
.signal-strip dd {
  margin: 0;
}

.signal-strip dt {
  color: var(--muted-deep);
  font-size: 12px;
}

.signal-strip dd {
  margin-top: 6px;
  color: var(--text);
  font-size: 26px;
  font-weight: 950;
}

.studio,
.system,
.portfolio,
.contact {
  padding: 112px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 0.84fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.section-label {
  display: grid;
  gap: 10px;
  align-content: start;
}

.split-layout > .section-label,
.contact-layout > .section-label,
.section-head .section-label {
  padding-top: 4px;
}

.section-label span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 77, 0, 0.5);
  border-radius: 6px;
  color: var(--orange);
  font-weight: 950;
  background: rgba(255, 77, 0, 0.08);
}

.studio-media {
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 8px;
  background: var(--panel);
}

.studio-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section-copy h2,
.contact-copy h2 {
  font-size: 48px;
}

.section-copy p,
.contact-copy p,
.section-intro {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.service-cloud span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 6px;
  padding: 0 13px;
  color: var(--text);
  background: rgba(245, 241, 234, 0.045);
  font-size: 13px;
  font-weight: 800;
}

.section-head {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 64px;
  padding-bottom: 0.08em;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(245, 241, 234, 0.1);
}

.advantage-card {
  min-height: 372px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #101010;
}

.advantage-card + .advantage-card {
  border-left: 1px solid rgba(245, 241, 234, 0.1);
}

.advantage-card:hover {
  background:
    linear-gradient(180deg, rgba(255, 77, 0, 0.09), rgba(255, 77, 0, 0)),
    #121212;
}

.advantage-index {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.advantage-card h3 {
  margin: 38px 0 16px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.28;
  text-wrap: pretty;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 16px;
  margin-bottom: 24px;
  scrollbar-width: thin;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(245, 241, 234, 0.04);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: #160800;
  border-color: var(--orange);
  background: var(--orange);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.work-card {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
  text-align: left;
  transition:
    transform 190ms var(--ease),
    border-color 190ms ease,
    background 190ms ease;
  animation: card-in 260ms var(--ease) both;
}

.work-card:nth-child(1),
.work-card:nth-child(7) {
  grid-column: span 8;
}

.work-card:nth-child(5),
.work-card:nth-child(12) {
  grid-column: span 6;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 0, 0.56);
  background: var(--panel-strong);
}

.work-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.work-card:nth-child(1) .work-thumb,
.work-card:nth-child(7) .work-thumb {
  aspect-ratio: 16 / 7.8;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms var(--ease);
}

.work-card:hover .work-thumb img {
  transform: scale(1.055);
}

.work-thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.78));
}

.work-meta {
  min-height: 88px;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.work-meta span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.work-meta h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 19px;
  line-height: 1.35;
}

.contact-layout {
  display: grid;
  grid-template-columns: 150px 1fr 390px;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 77, 0, 0.12), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow-1);
}

.contact-panel h3 {
  margin: 10px 0 10px;
  font-size: 42px;
  line-height: 1.32;
}

.contact-phone {
  display: inline-flex;
  margin-top: 10px;
  color: var(--text);
  font-size: 28px;
  font-weight: 950;
}

.contact-location {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.site-footer {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  background: #050505;
}

.footer-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-deep);
  font-size: 13px;
}

.footer-inner a {
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  max-width: calc(100% - 32px);
  transform: translate(-50%, 16px);
  border: 1px solid rgba(245, 241, 234, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text);
  background: rgba(20, 20, 20, 0.95);
  box-shadow: var(--shadow-1);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 86px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.open {
  display: flex;
}

.lightbox-card {
  width: min(1120px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 8px;
  background: #0b0b0b;
  box-shadow: var(--shadow-2);
}

.lightbox-card img {
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  background: #050505;
}

.lightbox-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid rgba(245, 241, 234, 0.1);
}

.lightbox-card span {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.lightbox-card strong {
  color: var(--text);
  font-size: 18px;
}

.lightbox-card em {
  color: var(--muted-deep);
  font-size: 13px;
  font-style: normal;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 82;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 6px;
  color: var(--text);
  background: rgba(20, 20, 20, 0.92);
  cursor: pointer;
}

.lightbox-close {
  top: 28px;
  right: 28px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 520ms var(--ease),
    transform 520ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 180px 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .hero-layout,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .section-label {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .studio-media {
    max-width: 760px;
  }

  .studio-media img {
    aspect-ratio: 16 / 9;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-card + .advantage-card {
    border-left: 0;
  }

  .advantage-card:nth-child(even) {
    border-left: 1px solid rgba(245, 241, 234, 0.1);
  }

  .advantage-card:nth-child(n + 3) {
    border-top: 1px solid rgba(245, 241, 234, 0.1);
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    max-width: 520px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-behavior: auto;
  }

  .shell {
    width: min(100% - 32px, 1240px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .brand,
  .brand img {
    width: 150px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-panel {
    display: flex;
  }

  .mobile-panel {
    display: block;
    inset: 68px 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .hero-layout {
    gap: 38px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .section-copy h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .section-head h2 {
    font-size: 52px;
  }

  .image-stack {
    min-height: 390px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .work-card,
  .work-card:nth-child(1),
  .work-card:nth-child(5),
  .work-card:nth-child(7),
  .work-card:nth-child(12) {
    grid-column: span 6;
  }

  .work-card:nth-child(1) .work-thumb,
  .work-card:nth-child(7) .work-thumb {
    aspect-ratio: 16 / 9;
  }

  .lightbox {
    padding: 76px 14px 18px;
  }

  .lightbox-card figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav.prev {
    left: 18px;
  }

  .lightbox-nav.next {
    right: 18px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-lede,
  .section-copy p,
  .contact-copy p,
  .section-intro {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .image-stack {
    min-height: 300px;
  }

  .ai-hero-image {
    object-position: 58% 50%;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .studio,
  .system,
  .portfolio,
  .contact {
    padding: 76px 0;
  }

  .section-copy h2,
  .contact-copy h2 {
    font-size: 32px;
  }

  .section-head h2 {
    font-size: 40px;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card,
  .advantage-card:nth-child(even) {
    min-height: 260px;
    border-left: 0;
  }

  .advantage-card + .advantage-card {
    border-top: 1px solid rgba(245, 241, 234, 0.1);
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-panel h3 {
    font-size: 34px;
  }

  .contact-phone {
    font-size: 24px;
  }

  .footer-inner {
    min-height: 96px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
