:root {
  color-scheme: dark;
  --ink: #f7f1e8;
  --muted: rgba(247, 241, 232, 0.72);
  --faint: rgba(247, 241, 232, 0.08);
  --line: rgba(247, 241, 232, 0.18);
  --charcoal: #141414;
  --black: #080807;
  --red: #ff3b16;
  --red-dark: #9d1307;
  --orange: #ff8a3d;
  --radius: 8px;
  --content: min(1160px, calc(100vw - 40px));
  --display: "Unbounded", "Arial Black", Impact, sans-serif;
  --text: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #080807 0%, #100201 52%, #080807 100%);
  color: var(--ink);
  font-family: var(--text);
  letter-spacing: 0;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(rgba(247, 241, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 232, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 84%, transparent);
}

body::after {
  opacity: 0.36;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 59, 22, 0.06), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(255, 138, 61, 0.05), transparent 24%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--content);
  min-height: 58px;
  padding: 8px 8px 8px 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(247, 241, 232, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 780;
  font-family: var(--display);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4b1f, var(--red-dark));
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(255, 59, 22, 0.34);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(247, 241, 232, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.text-link,
.footer-links a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(247, 241, 232, 0.22);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 740;
  font-family: var(--display);
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 59, 22, 0.58);
}

.header-action {
  background: var(--ink);
  color: var(--black);
}

.button-primary {
  background: linear-gradient(135deg, #ff4b1f, #d51b08);
  color: var(--ink);
  border-color: var(--red);
  box-shadow: 0 14px 42px rgba(255, 59, 22, 0.22);
}

.button-secondary {
  background: rgba(247, 241, 232, 0.08);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  padding: 132px max(20px, calc((100vw - 1160px) / 2)) 54px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(142, 15, 5, 0.72), transparent 52%),
    linear-gradient(180deg, #020202 0%, #080100 52%, #210300 100%),
    #080807;
}

.hero-media,
.hero-shade,
.hero-type {
  position: absolute;
  inset: 0;
}

.hero-media {
  pointer-events: none;
}

.vmc-render {
  position: absolute;
  top: 9%;
  right: max(-86px, calc((100vw - 1420px) / 2));
  width: min(82vw, 1320px);
  height: auto;
  object-fit: cover;
  opacity: 0.92;
  filter: saturate(1.12) contrast(1.05);
  animation: renderFloat 7s ease-in-out infinite;
}

.hero-type {
  z-index: 0;
  display: grid;
  align-content: center;
  gap: clamp(12px, 2vw, 28px);
  padding-left: max(20px, calc((100vw - 1160px) / 2));
  color: rgba(247, 241, 232, 0.045);
  font-family: var(--display);
  font-size: 142px;
  font-weight: 800;
  line-height: 0.74;
  text-transform: uppercase;
  transform: translateY(-5%);
  animation: typeDrift 12s ease-in-out infinite;
}

.hero-type span:nth-child(2) {
  margin-left: clamp(18px, 5vw, 82px);
  color: rgba(255, 59, 22, 0.09);
}

.hero-type span:nth-child(3) {
  margin-left: clamp(8px, 2.2vw, 36px);
}

.hero-rail {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1160px) / 2));
  top: 132px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  color: rgba(247, 241, 232, 0.62);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-rail span {
  padding: 8px 10px;
  border: 1px solid rgba(247, 241, 232, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 7, 0.36);
  backdrop-filter: blur(12px);
}

.hero-rail span:nth-child(2) {
  color: var(--orange);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.82) 36%, rgba(3, 3, 3, 0.18) 72%),
    linear-gradient(0deg, var(--black) 0%, rgba(8, 8, 7, 0.04) 34%, rgba(8, 8, 7, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(720px, 100%);
  padding-bottom: clamp(22px, 5vw, 72px);
}

.eyebrow,
.section-label,
.project-copy span,
.service-list span,
.timeline span,
.format-grid span,
.package-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 14px 0 20px;
  font-family: var(--display);
  font-size: 86px;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.34;
}

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

.signal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.signal-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 59, 22, 0.36);
  border-radius: 999px;
  background: rgba(255, 59, 22, 0.08);
  color: rgba(247, 241, 232, 0.82);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-tags span:nth-child(2) {
  transform: rotate(-2deg);
}

.signal-tags span:nth-child(3) {
  transform: rotate(2deg);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  align-self: end;
  width: min(700px, 100%);
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.hero-panel div {
  min-height: 112px;
  padding: 18px;
  background: rgba(8, 8, 7, 0.58);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}

.hero-panel span {
  color: rgba(247, 241, 232, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 241, 232, 0.035);
}

.marquee div {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  gap: clamp(22px, 5vw, 68px);
  padding: 16px 20px;
  color: rgba(247, 241, 232, 0.72);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marqueeSlide 22s linear infinite;
}

.band {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(76px, 11vw, 132px) 0;
  overflow: hidden;
}

.band > * {
  position: relative;
  z-index: 1;
}

.intro,
.services,
.process,
.packages,
.faq {
  border-top: 1px solid var(--line);
}

.intro::after,
.formats::after,
.work::after,
.services::after,
.packages::after {
  position: absolute;
  right: 0;
  top: 54px;
  z-index: 0;
  color: rgba(255, 59, 22, 0.055);
  font-family: var(--display);
  font-size: 116px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.intro::after {
  content: "VMC";
}

.formats::after {
  content: "Signal";
}

.work::after {
  content: "Drop";
}

.services::after {
  content: "Make";
}

.packages::after {
  content: "Scale";
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: end;
}

h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: 68px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro p,
.section-note,
.contact-copy p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.section-heading {
  margin-bottom: 34px;
}

.section-note {
  align-self: end;
  font-size: 17px;
}

.text-link {
  justify-self: end;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.format-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.format-grid article,
.service-list article {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 241, 232, 0.035);
  overflow: hidden;
}

.format-grid article::before,
.service-list article::before {
  position: absolute;
  right: 18px;
  bottom: -10px;
  color: rgba(255, 59, 22, 0.08);
  content: attr(data-mark);
  font-family: var(--display);
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
}

.format-grid article:nth-child(odd),
.service-list article:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(255, 59, 22, 0.1), transparent 46%),
    rgba(247, 241, 232, 0.035);
}

.format-grid h3,
.service-list h3,
.timeline h3,
.package-grid h3 {
  margin: 42px 0 12px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.05;
  text-wrap: balance;
}

.format-grid p,
.service-list p,
.timeline p,
.package-grid p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 59, 22, 0.42);
}

.project-card img {
  transition:
    transform 600ms ease,
    filter 600ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.16) contrast(1.06);
}

.project-large {
  grid-row: span 2;
  min-height: 680px;
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(8, 8, 7, 0.86) 0%, rgba(8, 8, 7, 0.16) 58%),
    linear-gradient(135deg, rgba(255, 59, 22, 0.22), transparent 54%);
}

.project-copy {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.project-copy h3 {
  margin: 8px 0 8px;
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  line-height: 0.95;
}

.project-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.result-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.result-strip div {
  padding: 22px;
  background: rgba(247, 241, 232, 0.035);
}

.result-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
}

.result-strip span {
  color: var(--muted);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.timeline div {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 59, 22, 0.12), transparent 44%),
    rgba(247, 241, 232, 0.035);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: 0;
}

.package-grid article {
  display: grid;
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 241, 232, 0.035);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.package-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 59, 22, 0.44);
}

.package-featured {
  background:
    linear-gradient(135deg, rgba(255, 59, 22, 0.18), rgba(255, 138, 61, 0.08)),
    rgba(247, 241, 232, 0.045) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.package-grid ul {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.package-grid li {
  position: relative;
  padding-left: 18px;
}

.package-grid li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.package-grid .button {
  align-self: end;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 241, 232, 0.035);
}

.faq-list summary {
  padding: 22px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 760;
  cursor: pointer;
}

.faq-list p {
  padding: 0 22px 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: stretch;
  width: var(--content);
  margin: 0 auto 20px;
  padding: clamp(34px, 7vw, 80px);
  border: 1px solid rgba(255, 59, 22, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 59, 22, 0.2), rgba(255, 138, 61, 0.12)),
    #151511;
}

.contact h2 {
  max-width: 760px;
}

.contact-copy p {
  max-width: 600px;
  margin-top: 22px;
  font-size: 18px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(247, 241, 232, 0.2);
  border-radius: 999px;
  background: rgba(8, 8, 7, 0.28);
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 59, 22, 0.58);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(247, 241, 232, 0.8);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 241, 232, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, 0.42);
  color: var(--ink);
  outline: 0;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 59, 22, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 59, 22, 0.1);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: var(--content);
  margin: 0 auto;
  padding: 30px 0 42px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
}

.thanks-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(142, 15, 5, 0.72), transparent 52%),
    linear-gradient(180deg, #020202 0%, #080100 52%, #210300 100%);
}

.thanks-screen {
  display: grid;
  min-height: 100vh;
  align-content: center;
  width: var(--content);
  margin: 0 auto;
  padding: 42px 0;
}

.thanks-screen > .brand {
  position: absolute;
  top: 28px;
}

.thanks-card {
  width: min(780px, 100%);
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255, 59, 22, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 59, 22, 0.2), rgba(255, 138, 61, 0.12)),
    rgba(8, 8, 7, 0.72);
  backdrop-filter: blur(16px);
}

.thanks-card h1 {
  margin: 12px 0 18px;
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
}

.thanks-card p {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

@keyframes renderFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes typeDrift {
  0%,
  100% {
    transform: translate3d(0, -5%, 0);
  }

  50% {
    transform: translate3d(12px, -5%, 0);
  }
}

@keyframes marqueeSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-48px);
  }
}

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

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

  .nav-links {
    display: none;
  }

  .vmc-render {
    top: 16%;
    right: -34vw;
    width: 118vw;
    opacity: 0.62;
  }

  .hero-type {
    font-size: 104px;
  }

  .hero-rail {
    display: none;
  }

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

  .hero-copy {
    font-size: 20px;
  }

  h2 {
    font-size: 52px;
  }

  .project-copy h3 {
    font-size: 42px;
  }

  .hero-panel,
  .intro-grid,
  .section-heading,
  .project-grid,
  .format-grid,
  .service-list,
  .timeline,
  .package-grid,
  .result-strip,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin: 22px 0 0;
  }

  .project-large,
  .project-card {
    min-height: 460px;
  }

  .text-link {
    justify-self: start;
  }

  .format-grid,
  .service-list {
    border-left: 0;
  }

  .format-grid article,
  .service-list article {
    min-height: 220px;
    border-left: 1px solid var(--line);
  }

  .package-grid article {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(100vw - 28px, 1160px);
  }

  .site-header {
    top: 12px;
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 98vh;
    padding-top: 110px;
    padding-bottom: 34px;
  }

  .vmc-render {
    top: 12%;
    right: -68vw;
    width: 180vw;
    opacity: 0.42;
  }

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

  .hero-type {
    font-size: 72px;
    line-height: 0.78;
  }

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

  h2 {
    font-size: 38px;
  }

  .project-copy h3,
  .result-strip strong {
    font-size: 34px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .marquee div {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .project-card,
  .project-large {
    min-height: 380px;
  }

  .format-grid h3,
  .service-list h3,
  .timeline h3,
  .package-grid h3 {
    margin-top: 30px;
  }

  .contact {
    padding: 34px 18px;
  }

  .thanks-card {
    padding: 30px 18px;
  }

  .thanks-card h1 {
    font-size: 38px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
