/* ==========================================================================
   KRAFT. — feuille de styles principale
   Reconstruction statique du site Framer. Aucun framework, aucun CDN,
   aucune requête réseau : polices, images et scripts sont locaux.
   ==========================================================================
   Sommaire
     1.  Tokens
     2.  Reset et base
     3.  Utilitaires
     4.  Boutons
     5.  En-tête / navigation
     6.  Hero
     7.  Manifeste
     8.  Portfolio
     9.  Valeurs structurelles
     10. Processus (accordéon)
     11. Blueprint / études de cas
     12. Chiffres
     13. Spécialistes
     14. Témoignages
     15. FAQ (accordéon)
     16. Contact
     17. Pied de page
   ========================================================================== */

@import url('./fonts.css');

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs relevées sur le rendu Framer d'origine */
  --bg: #0a0a0a;
  --bg-raised: #111111;
  --bg-inset: #161616;
  --border: #262626;
  --border-strong: #3a3a3a;

  --text: #f0f0f0;
  --text-muted: #d4d4d4;
  --text-dim: #a3a3a3;

  --accent: #e6f032;
  --accent-ink: #0a0a0a;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --section-y: clamp(64px, 10vw, 140px);
  --maxw: 1400px;

  --radius: 2px; /* brutalisme : angles quasi vifs */
}

/* --------------------------------------------------------------------------
   2. Reset et base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Compense l'en-tête collant lors d'un saut d'ancre */
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

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

@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;
  }
}

/* --------------------------------------------------------------------------
   3. Utilitaires
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  border-top: 1px solid var(--border);
}

/* Sur-titre jaune présent au-dessus de chaque grand titre */
.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}

@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.section-title {
  font-size: clamp(32px, 6vw, 72px);
}

.section-intro {
  color: var(--text-dim);
  max-width: 52ch;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  z-index: 300;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

/* --------------------------------------------------------------------------
   4. Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-accent:hover {
  background: #f2fb5c;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s, gap 0.2s;
}

.btn-link::after {
  content: '\203A'; /* chevron simple, pas d'icône externe */
  font-size: 16px;
  line-height: 1;
}

.btn-link:hover {
  color: var(--accent);
  gap: 12px;
}

/* --------------------------------------------------------------------------
   5. En-tête / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding-block: 12px;
}

.brand {
  display: inline-block;
  padding: 6px 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  list-style: none;
}

.nav-list a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-list a:hover {
  color: var(--accent);
}

/*
 * Bascule mobile sans JavaScript : une case à cocher masquée pilote le
 * panneau. Elle reste focalisable au clavier (pas de `display: none`),
 * sinon le burger serait inutilisable à la souris près.
 */
.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--accent);
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  height: 2px;
  background: var(--accent-ink);
  transition: transform 0.3s, opacity 0.2s;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:focus-visible ~ .nav-toggle-label {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-toggle-label {
    display: flex;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.32s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 24px;
  }

  .nav-list li + li {
    border-top: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(48px, 8vw, 110px);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

/*
 * Plafond à 80px : au-delà, « REDEFINING » dépasse la colonne de gauche
 * (~530 px à 1280 px de large) et `overflow-wrap` le coupe en plein mot.
 */
.hero-title {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 24px;
}

.hero-lede {
  max-width: 46ch;
  color: var(--text-muted);
}

/* Deux clichés désaxés, encadrés de blanc — signature visuelle du site */
.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.hero-media figure {
  border: 6px solid #ffffff;
  background: #ffffff;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.hero-media .shot-a {
  transform: translateY(-18px);
}

.hero-media .shot-b {
  transform: translateY(48px);
}

.hero-media .shot-b img {
  aspect-ratio: 3 / 4;
}

@media (max-width: 600px) {
  .hero-media .shot-a,
  .hero-media .shot-b {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   7. Manifeste
   -------------------------------------------------------------------------- */
.manifesto-title {
  font-size: clamp(30px, 5.4vw, 64px);
  max-width: 18ch;
  margin-bottom: 20px;
}

.manifesto-body {
  max-width: 62ch;
  color: var(--text-dim);
}

.manifesto-figure {
  margin-top: clamp(32px, 5vw, 56px);
  border: 6px solid #ffffff;
  background: #ffffff;
}

.manifesto-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   8. Portfolio
   -------------------------------------------------------------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
}

@media (max-width: 1000px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.project {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.project img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project:hover img {
  transform: scale(1.04);
}

.project-meta {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92), transparent);
}

.project-index {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

.project-name {
  font-size: clamp(15px, 1.6vw, 19px);
}

/* --------------------------------------------------------------------------
   9. Valeurs structurelles
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value {
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.value img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.value-body {
  padding: 24px;
}

.value-pillar {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.value-title {
  font-size: 20px;
}

/* --------------------------------------------------------------------------
   10. Processus (accordéon natif <details>)
   -------------------------------------------------------------------------- */
.phase-list {
  border-top: 1px solid var(--border);
}

.phase {
  border-bottom: 1px solid var(--border);
}

.phase > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(17px, 2.4vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  list-style: none;
  transition: color 0.2s;
}

.phase > summary::-webkit-details-marker {
  display: none;
}

.phase > summary:hover {
  color: var(--accent);
}

/* Marqueur +/- construit en CSS, aucune icône externe */
.phase > summary::after {
  content: '+';
  flex: none;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s;
}

.phase[open] > summary::after {
  content: '\2212'; /* signe moins */
}

.phase-body {
  padding-bottom: 28px;
  max-width: 70ch;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   11. Blueprint / études de cas
   -------------------------------------------------------------------------- */
.blueprint-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(12px, 1.6vw, 24px);
}

@media (max-width: 900px) {
  .blueprint-grid {
    grid-template-columns: 1fr;
  }
}

.case-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.case-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.case-body {
  padding: clamp(20px, 3vw, 32px);
}

.case-title {
  font-size: clamp(20px, 2.6vw, 30px);
  margin-bottom: 12px;
}

.case-text {
  color: var(--text-dim);
  margin-bottom: 20px;
}

.case-stack {
  display: grid;
  gap: clamp(12px, 1.6vw, 24px);
  align-content: start;
}

.case-small {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

/* --------------------------------------------------------------------------
   12. Chiffres
   -------------------------------------------------------------------------- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
}

@media (max-width: 900px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

.metric {
  padding: clamp(24px, 3.5vw, 40px);
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 12px;
}

.metric-label {
  font-size: 15px;
  margin-bottom: 10px;
}

.metric-text {
  font-size: 14px;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   13. Spécialistes
   -------------------------------------------------------------------------- */
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
}

@media (max-width: 1000px) {
  .specialists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .specialists-grid {
    grid-template-columns: 1fr;
  }
}

.specialist {
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.specialist img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.4s;
}

.specialist:hover img {
  filter: grayscale(0);
}

.specialist-body {
  padding: 20px;
}

.specialist-name {
  font-size: 17px;
  margin-bottom: 6px;
}

.specialist-role {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.specialist-text {
  font-size: 14px;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   14. Témoignages
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
}

@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.testimonial blockquote {
  flex: 1;
  color: var(--text-muted);
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial img {
  flex: none;
  width: 48px;
  height: 48px;
  object-fit: cover;
  filter: grayscale(1);
}

.testimonial-org {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  list-style: none;
  transition: color 0.2s;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary:hover {
  color: var(--accent);
}

.faq-item > summary::after {
  content: '+';
  flex: none;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
}

.faq-item[open] > summary::after {
  content: '\2212';
}

.faq-answer {
  padding-bottom: 24px;
  max-width: 62ch;
  color: var(--text-dim);
}

.faq-aside {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--border);
  background: var(--bg-raised);
}

.faq-aside h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-aside p {
  color: var(--text-dim);
  margin-bottom: 22px;
}

/* --------------------------------------------------------------------------
   16. Contact
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-figure {
  border: 6px solid #ffffff;
  background: #ffffff;
}

.contact-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.field {
  display: block;
  margin-bottom: 20px;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-inset);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
}

.field-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

/*
 * Piège à robots : sorti du flux plutôt que masqué en `display: none`,
 * qu'une partie des robots détecte et contourne. Invisible à l'écran et
 * ignoré des lecteurs d'écran (aria-hidden + tabindex="-1" côté HTML).
 */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-success {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid var(--accent);
  background: var(--bg-raised);
}

.contact-success p {
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   17. Pied de page
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: var(--section-y) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) 1.5fr;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(40px, 6vw, 72px);
}

@media (max-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-heading {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.footer-bottom a:hover {
  color: var(--accent);
}
