@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --blue: #205baf;
  --red: #de170f;
  --red-dark: #ad120c;
  --yellow: #fdcb0d;
  --black: #000;
  --cream: #f7f3ec;
  --white: #fff;
  --line: 1.5px solid var(--black);
  --page: min(100% - 2rem, 90rem);
  --section-space: clamp(4.5rem, 9vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  min-width: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  color: var(--cream);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--black);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  padding: 0.55rem 1rem;
  border-bottom: var(--line);
  background: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: var(--line);
  background: var(--cream);
}

.nav-shell {
  width: var(--page);
  min-height: 6rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.site-nav {
  display: contents;
}

.nav-shell > .logo {
  grid-column: 2;
  grid-row: 1;
}

.nav-list:first-child {
  grid-column: 1;
  grid-row: 1;
}

.nav-list:last-child {
  grid-column: 3;
  grid-row: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list:first-child {
  justify-content: flex-start;
}

.nav-list:last-child {
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  padding-block: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.01em;
  color: var(--black);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 1;
  text-decoration: none;
}

.logo span:nth-child(1),
.logo span:nth-child(5) {
  color: var(--blue);
}

.logo span:nth-child(3) {
  color: var(--yellow);
}

.logo span:nth-child(4) {
  color: var(--red);
}

.logo span:nth-child(5) {
  display: inline-block;
  transform: rotate(180deg) translateY(-0.02em);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.38rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.container {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 0.55rem;
  background: var(--yellow);
}

.display,
.section-title {
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.display {
  max-width: 12ch;
  margin-bottom: 1.75rem;
  font-size: clamp(3.4rem, 8vw, 8.8rem);
}

.section-title {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-size: clamp(2.6rem, 5.4vw, 6rem);
}

.lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 300;
}

.body-copy {
  max-width: 42rem;
  font-weight: 300;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: var(--line);
  color: var(--cream);
  background: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--black);
  background: var(--yellow);
  transform: translate(-3px, -3px);
}

.button--light {
  color: var(--black);
  background: var(--cream);
}

.button--outline {
  color: var(--black);
  background: transparent;
}

.hero {
  min-height: min(52rem, calc(100svh - 8.25rem));
  border-bottom: var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(24rem, 0.94fr);
  min-height: inherit;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) max(1rem, calc((100vw - 90rem) / 2));
  padding-right: clamp(2rem, 7vw, 7rem);
}

.hero-copy .display {
  margin-left: -0.06em;
}

.hero-art {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border-left: var(--line);
  background: var(--yellow);
}

.photo-placeholder {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border: var(--line);
  background-color: #e6ded1;
  background-image:
    linear-gradient(145deg, transparent 48%, rgba(0, 0, 0, 0.08) 49%, rgba(0, 0, 0, 0.08) 50%, transparent 51%),
    linear-gradient(35deg, transparent 48%, rgba(0, 0, 0, 0.08) 49%, rgba(0, 0, 0, 0.08) 50%, transparent 51%);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  top: 16%;
  left: 10%;
  border-radius: 50%;
  background: var(--red);
  mix-blend-mode: multiply;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 54%;
  right: 8%;
  bottom: 8%;
  background: var(--blue);
  mix-blend-mode: multiply;
}

.photo-placeholder--image::before,
.photo-placeholder--image::after {
  display: none;
}

.photo-placeholder--image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.placeholder-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  max-width: calc(100% - 2rem);
  padding: 0.55rem 0.7rem;
  color: var(--cream);
  background: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.hero-art .photo-placeholder {
  width: calc(100% - clamp(2rem, 5vw, 5rem));
  height: calc(100% - clamp(4rem, 9vw, 9rem));
  min-height: 0;
  margin: clamp(2rem, 5vw, 5rem) 0 0 clamp(2rem, 5vw, 5rem);
}

.hero-art .shape-circle {
  position: absolute;
  z-index: 3;
  width: clamp(5rem, 10vw, 10rem);
  aspect-ratio: 1;
  right: clamp(1rem, 3vw, 3rem);
  bottom: clamp(1rem, 3vw, 3rem);
  border-radius: 50%;
  background: var(--red);
}

.hero-art .shape-line {
  position: absolute;
  z-index: 4;
  width: clamp(6rem, 13vw, 13rem);
  height: 1.4rem;
  right: 3%;
  bottom: 20%;
  background: var(--black);
  transform: rotate(-18deg);
}

.hero--blue .hero-art {
  background: var(--blue);
}

.hero--blue .hero-art .shape-circle {
  background: var(--yellow);
}

.hero--red .hero-art {
  background: var(--red);
}

.hero--red .hero-art .shape-circle {
  background: var(--blue);
}

.ticker {
  overflow: hidden;
  border-bottom: var(--line);
  color: var(--cream);
  background: var(--black);
}

.ticker-track {
  width: max-content;
  display: flex;
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-group {
  min-width: 100vw;
  flex: 0 0 auto;
  padding: 0.85rem 1rem;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.statement {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  border-bottom: var(--line);
}

.statement-copy {
  position: relative;
  z-index: 2;
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.statement-copy strong {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}

.statement-shape {
  position: absolute;
  width: clamp(8rem, 20vw, 20rem);
  aspect-ratio: 1;
  right: -4%;
  bottom: -32%;
  border-radius: 50%;
  background: var(--yellow);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: var(--line);
}

.audience-card {
  min-height: 42rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--cream);
}

.audience-card + .audience-card {
  border-left: var(--line);
}

.audience-card--blue {
  background: var(--blue);
}

.audience-card--red {
  color: var(--white);
  background: var(--red);
}

.audience-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-number span:last-child {
  display: grid;
  width: 3.5rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.audience-title {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.audience-card p {
  max-width: 34rem;
  font-weight: 300;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}

.grid-2--top {
  align-items: start;
}

.offset-media {
  position: relative;
  padding: 0 0 clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

.offset-media::before {
  content: "";
  position: absolute;
  inset: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem) 0 0;
  border: var(--line);
  background: var(--yellow);
}

.offset-media .photo-placeholder {
  position: relative;
  min-height: clamp(25rem, 48vw, 44rem);
}

.values-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--line);
  border-left: var(--line);
}

.value-card,
.step-card {
  min-height: 22rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: var(--line);
  border-bottom: var(--line);
}

.card-number {
  display: block;
  margin-bottom: clamp(5rem, 10vw, 10rem);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.value-card h3,
.step-card h3 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2.3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.value-card p,
.step-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 300;
}

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

.flavour-card {
  grid-column: span 4;
  border: var(--line);
  background: var(--cream);
}

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

.flavour-visual {
  position: relative;
  min-height: clamp(18rem, 30vw, 30rem);
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--yellow);
}

.flavour-card:nth-child(2) .flavour-visual {
  background: var(--red);
}

.flavour-card:nth-child(3) .flavour-visual {
  background: #161616;
}

.flavour-card:nth-child(4) .flavour-visual {
  background: #9ea648;
}

.flavour-card:nth-child(5) .flavour-visual {
  background: var(--blue);
}

.flavour-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.flavour-visual.is-placeholder::after {
  content: "Photo à remplacer";
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.45rem;
  color: var(--cream);
  background: var(--black);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flavour-info {
  display: flex;
  min-height: 8rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
}

.flavour-info h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.flavour-info span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.band {
  border-block: var(--line);
  background: var(--yellow);
}

.band .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 3rem;
  padding-block: clamp(3rem, 7vw, 7rem);
}

.band .section-title {
  margin-bottom: 0;
}

.band p {
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--line);
}

.contact-copy {
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--cream);
  background: var(--blue);
}

.contact-copy .eyebrow {
  color: var(--cream);
}

.contact-copy .section-title {
  margin-bottom: 2rem;
}

.contact-details {
  margin: 0;
  padding: clamp(2rem, 5vw, 5rem);
  list-style: none;
}

.contact-details li {
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--black);
}

.contact-details small {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details span {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.page-intro {
  padding-block: clamp(4rem, 10vw, 10rem);
  border-bottom: var(--line);
}

.page-intro .display {
  max-width: 13ch;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
}

.intro-index {
  align-self: start;
  width: min(100%, 16rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 50%;
  color: var(--cream);
  background: var(--red);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 800;
  transform: rotate(9deg);
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 8vw, 9rem);
  padding-block: clamp(3rem, 7vw, 7rem);
  border-bottom: var(--line);
}

.story-row h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.story-row p {
  max-width: 40rem;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.use-card {
  min-height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: var(--line);
  background: var(--yellow);
}

.use-card:nth-child(2) {
  color: var(--cream);
  background: var(--blue);
  transform: translateY(2rem);
}

.use-card:nth-child(3) {
  color: var(--white);
  background: var(--red);
}

.use-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.use-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer {
  border-top: var(--line);
  color: var(--cream);
  background: var(--black);
}

.footer-main {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(3rem, 7vw, 7rem);
}

.footer-logo {
  margin-bottom: clamp(3rem, 8vw, 8rem);
  font-size: clamp(4.2rem, 13vw, 13rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.8fr);
  gap: 2rem;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a,
.footer-links span {
  font-size: 0.9rem;
  text-underline-offset: 0.2em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--white);
}

.hero-grid > *,
.grid-2 > *,
.intro-layout > *,
.story-row > *,
.band .container > *,
.flavour-card,
.contact-panel > * {
  min-width: 0;
}

@media (max-width: 64rem) {
  .nav-shell {
    min-height: 5rem;
    grid-template-columns: 1fr auto;
  }

  .nav-shell > .logo {
    grid-column: 1;
    justify-self: start;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(5rem + 1.9rem) 0 0;
    z-index: 19;
    display: none;
    padding: 2rem 1rem;
    overflow-y: auto;
    border-top: var(--line);
    background: var(--yellow);
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .nav-list {
    display: block;
  }

  .nav-list:last-child {
    margin-top: 0;
  }

  .nav-list li {
    border-bottom: var(--line);
  }

  .nav-link {
    display: block;
    padding: 1.25rem 0;
    font-size: clamp(1.4rem, 5vw, 2.7rem);
  }

  .nav-link::after {
    display: none;
  }

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

  .hero-art {
    min-height: 38rem;
    border-top: var(--line);
    border-left: 0;
  }

  .values-grid,
  .steps-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .use-card:nth-child(2) {
    transform: none;
  }

  .value-card,
  .step-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 4rem;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 48rem) {
  :root {
    --page: min(100% - 1.25rem, 90rem);
    --section-space: 4.5rem;
  }

  .display {
    font-size: clamp(3rem, 15vw, 5.5rem);
  }

  .hero-copy {
    padding: 4.5rem 0.625rem;
  }

  .hero-art {
    min-height: 29rem;
  }

  .hero-art .photo-placeholder {
    min-height: 25rem;
    margin-left: 1.25rem;
  }

  .split-section,
  .grid-2,
  .contact-panel,
  .intro-layout,
  .story-row,
  .band .container {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 34rem;
    padding: 2rem 1rem;
  }

  .audience-card + .audience-card {
    border-top: var(--line);
    border-left: 0;
  }

  .flavour-card,
  .flavour-card:nth-child(4),
  .flavour-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .flavour-visual {
    min-height: 22rem;
  }

  .band .container {
    align-items: start;
  }

  .intro-index {
    margin: 1rem 0 0;
  }

  .story-row {
    gap: 1.5rem;
  }

  .footer-logo {
    font-size: clamp(4.5rem, 24vw, 8rem);
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
