/* --------------------
   Reset
   -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#app,
main,
.wrapper {
  transform: none;
}


/* --------------------
   Base / Globals
   -------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  font-weight: 200;
  background: var(--bg);
  color: var(--text);
  transition: background 0.4s ease, color 0.4s ease, opacity var(--transition-fast);
}


/* --------------------
   CSS Variables
   -------------------- */
:root {
  --bg: #ede4d5;
  --placeholder: #111;
  --input-textarea: #111;
  --bg-menu: rgba(237, 228, 213, 0.8);
  --bg-nav: rgba(237, 228, 213, 0.7);
  --border-nav: rgba(0, 0, 0, 0.08);
  --text: #111;
  --muted: rgba(17, 17, 17, 0.7);
  --input-textarea-shadow: rgba(17, 17, 17, 0.2);
  --accent: #882d17;
  --accent-border: rgba(136, 45, 23, 0.3);
  --shadow: rgba(17, 17, 17, 0.1);
  --button-border: rgba(237, 228, 213, 0.2);
  --button-shadow: rgba(0, 0, 0, 0.2);
  --button-shadow-hover: rgba(0, 0, 0, 0.25);
  --btn-newsletter: rgba(136, 45, 23, 0.7);
  --lang-theme-toogle-hover: rgba(0, 0, 0, 0.1);

  --section-newsletter: rgba(158, 87, 70, 0.6);
  --section-boutique: rgba(111, 136, 158, 0.6);
  --section-teepublic: rgba(111, 136, 158, 0.6);
  --fade-bottom-color: rgba(237, 228, 213, 0.4);

  --btn-bg: #222;
  --btn-color: #fff;

  --grain-opacity: 0.17;
  --grain-opacity-me: 0.25;

  --space-xs: 10px;
  --space-sm: 20px;
  --space-md: 40px;
  --space-lg: 80px;
  --space-xl: 100px;

  --nav-padding-y: 28px;
  --nav-padding-x: 80px;
  --nav-padding-y-mobile: 10px;
  --nav-padding-x-mobile: 50px;

  --gap-sm: 15px;
  --gap-md: 30px;
  --gap-lg: 40px;
  --gap-xl: 80px;

  --radius-sm: 12px;
  --radius-md: 14px;
  --radius-lg: 30px;
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  --fade-in-distance: 40px;
}

body.dark {
  --bg: #111;
  --placeholder: #b8b09a;
  --input-textarea: rgba(237, 228, 213, 1);
  --bg-menu: rgba(17, 17, 17, 0.9);
  --bg-nav: rgba(17, 17, 17, 0.7);
  --border-nav: rgba(255, 255, 255, 0.08);
  --text: #ede4d5;
  --muted: rgba(237, 228, 213, 0.7);
  --input-textarea-shadow: rgba(17, 17, 17, 0.3);
  --accent: #d3a07b;
  --accent-border: rgba(211, 160, 123, 0.3);
  --shadow: rgba(237, 228, 213, 0.1);
  --button-border: rgba(237, 228, 213, 0.2);
  --button-shadow: rgba(237, 228, 213, 0.1);
  --button-shadow-hover: rgba(237, 228, 213, 0.15);
  --btn-newsletter:rgba(211, 160, 123, 0.7);
  --lang-theme-toogle-hover: rgba(237, 228, 213, 0.1);
  --fade-bottom-color: rgba(17, 17, 17, 0.7);

  --section-boutique: rgba(46, 54, 61, 0.6);
  --section-teepublic: rgba(46, 54, 61, 0.6);
}

body.menu-open {
  overflow: hidden;
}


/* --------------------
   Grain texture
   -------------------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("../images/background.png");
}


/* --------------------
   Navigation
   -------------------- */
nav {
  isolation: isolate;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: var(--nav-padding-y) var(--nav-padding-x);

  background: var(--bg-nav);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--border-nav);

  box-shadow: 0 4px var(--space-sm) var(--shadow);

  transition: background 0.4s ease, border-color 0.4s ease;
}

nav h3 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 15px;
  opacity: 0.6;
  color: var(--accent);
}

nav ul {
  display: flex;
  gap: var(--gap-md);
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text);
  transition: opacity var(--transition), color var(--transition);
}

nav a:hover {
  opacity: 0.6;
}

nav .name:hover {
  opacity: 0.4;
  cursor: pointer;
  transition: opacity var(--transition), color var(--transition);
}

.bottom-fade {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  pointer-events: none;
  z-index: 99998;
  background: linear-gradient(to bottom, rgba(237, 228, 213,0) 10%, var(--fade-bottom-color) 100%);
}

.theme-toggle {
  text-transform: none;
  letter-spacing: normal;
  opacity: 1;
  font-size: 15px;
  background: none;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
}

.theme-toggle:hover {
  opacity: 0.6;
}

.lang-button {
  text-transform: none;
  letter-spacing: normal;
  opacity: 1;
  font-size: 15px;
  background: none;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: var(--transition);
}

.lang-button,
.theme-toggle {
  min-width: 60px;
}

.lang-button:hover {
  opacity: 0.6;
}

.lang-fade {
  opacity: 0;
  filter: blur(1px);
  transition: opacity var(--transition-fast), filter var(--transition-fast);
}

.hamburger {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 999999;
  isolation: isolate;
  display: none;
}


/* --------------------
   Hero
   -------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  display: block;

  position: absolute;

  width: clamp(250px, 60vw, 700px);
  aspect-ratio: 1 / 1;

  top: 55%;
  left: 20%;

  transform: translate(-50%, -50%);

  background: url("../icon/icon.png") center/contain no-repeat;

  opacity: 0.2;
  filter: blur(0.2px);

  pointer-events: none;

  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;

  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0 10%;
}

.small-title {
  margin-top: 100px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 15px;
  margin-bottom: 30px;
  opacity: 0.6;
  color: var(--accent);
}

body.dark .hero::before {
  opacity: 0.13;
}

.hero h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  font-weight: 300;
  max-width: 900px;
}

.intro {
  margin-top: 30px;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}


/* --------------------
   Sections
   -------------------- */
.section,
.newsletter,
.contact {
  padding: var(--space-xl) 10%;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin-bottom: 60px;
}

.section-tag {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  padding-bottom: var(--space-sm);
  opacity: 0.4;
  text-align: center;
}

.section h2,
.newsletter h2,
.contact h2 {
  display: inline-flex;

  font-family: "Libre Baskerville", serif;
  font-size: 64px;
  font-weight: 400;
}


/* --------------------
   Gallery / Lightbox
   -------------------- */
.support {
  max-width: 400px;
}

.gallery > * {
  justify-self: stretch;
}

.clickable,
.img-boutique {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform var(--transition);
}

.clickable:hover {
  transform: scale(1.02);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);

  display: flex; /* toujours flex */
  align-items: center;
  justify-content: center;

  z-index: 9999999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  backdrop-filter: blur(0px);
  transition: opacity 0.3s ease, visibility 0.3s, easebackdrop-filter 0.35s ease;
}

.lightbox.active {
  visibility: visible;
  z-index: 9999999;
  display: flex;
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(6px);
  scroll-snap-stop: inherit;
}

.lightbox img {
  z-index: 9999999;
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius-lg);
  transform: scale(0.92);
  opacity: 0;

  transition: transform 0.35s ease, opacity 0.35s ease;
}

.lightbox.active img {
  transform: scale(1);
  opacity: 1;
}

.close {
  position: absolute;
  top: var(--space-sm);
  right: 30px;
  font-size: var(--space-md);
  color: white;
  cursor: pointer;
  transition: opacity 0.3s;
}

.close:hover {
  opacity: 0.6;
}

.gallery {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0;
}


/* --------------------
   Cards
   -------------------- */
.art-card {
  width: 100%;
  min-width: 0;
  max-width: 400px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.art-card:hover {
  transform: translateY(-10px) scale(1.02);
}


/* --------------------
   Watercolor (utility)
   -------------------- */
.watercolor {
  background: #9e5746;
  opacity: 0.5;
}


/* --------------------
   Typography / Text
   -------------------- */
.art-card h3 {
  font-size: 22px;
  margin-bottom: var(--space-md);
  margin-top: 15px;
  font-family: "Libre Baskerville", serif;
  font-weight: 600;
}

.art-card p {
  color: var(--muted);
  line-height: 1.7;
}

.omtake a {
  font-style: italic;
  color: var(--muted);
  opacity: 0.8;
  text-decoration: none;
  display: inline-block;
  margin-top: var(--space-sm);
}

.me p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.7;
}

.me h3 {
  letter-spacing: 1px;
  font-size: 22px;
  margin-bottom: var(--space-md);
  margin-top: 15px;
  font-family: "Libre Baskerville", serif;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.me {
  margin-top: 40px;
  max-width: 100%;
  border: 2px solid var(--accent-border);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 5px var(--accent-border), 0 0 20px var(--shadow);
}

.art-card img {
  margin-bottom: 15px;
}

.support h3 {
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  opacity: 0.8;
  font-size: 22px;
  font-family: "Inter";
  font-weight: 100;
  line-height: 1.6;
}

.support p {
  margin-bottom: 50px;
  color: var(--muted);
  line-height: 1.7;
}


/* --------------------
   Newsletter
   -------------------- */
.newsletter {
  background-color: var(--section-newsletter);
  text-align: center;
}

.newsletter p {
  margin-top: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 2.5;
  font-weight: 100;
}

.info,
.createShop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);

  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  opacity: 0.9;
  font-size: 12px;
  font-family: "Inter";
}

.info p {
  line-height: 2.5;
  max-width: 600px;
  font-weight: 100;
}

.createShop p {
  line-height: 2.5;
  max-width: 600px;
  font-weight: 100;
}

.teepublic-wrapper {
  grid-column: 1 / -1;
  padding: var(--space-xl) 10%;
  margin-top: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.teepublic-wrapper::before {
  content: "";
  position: absolute;

  width: clamp(60px, 60vw, 180px);
  aspect-ratio: 1 / 1;

  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: url("../icon/teepublic_light.svg") center / contain no-repeat;

  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

body.dark .teepublic-wrapper::before {
  background: url("../icon/teepublic_dark.svg") center / contain no-repeat;
  transition: background 0.4s ease;
  opacity: 0.13;
}

.teepublic-wrapper .createShop {
  position: relative;
  z-index: 1;
}

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

button.newsletter-button,
button.teepublic-button {
  padding: 20px 25px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--btn-bg);
  color: #ede4d5;
  border-bottom: 2px solid var(--button-border);
  box-shadow: 0 8px 18px var(--button-shadow);
  line-height: 1.5;
}

.form-message {
  color: var(--text);
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.form-message.show {
  transform: translateY(0px);
  opacity: 0.8;
}


/* --------------------
   Shops / Boutique
   -------------------- */
.boutique-section {
  background: var(--section-boutique);
}

body.dark .boutique-section {
  background: var(--section-boutique);
}

.shop-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


/* --------------------
   Forms
   -------------------- */
.newsletter-row {
  display: flex;
  gap: 15px;
  width: 100%;
}

.newsletter-row input {
  flex: 1;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  flex: 0 0 300px;
}

.newsletter-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  box-sizing: border-box;
}

.newsletter-form {
  margin-top: var(--space-md);
  margin-inline: auto;
  max-width: 500px;
}

input,
textarea {
  font-family: "Inter", sans-serif;
  color: var(--text);
  padding: 18px;
  border: none;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  box-shadow: 0 0 5px var(--input-textarea-shadow);
  transition: background 0.4s ease, color 0.4s ease;
}

body.dark input,
body.dark textarea {
  color: var(--input-text);
  background: rgba(255, 255, 255, 0.15);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
  opacity: 0.3;
}

button {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--btn-bg);
  color: #ede4d5;
  cursor: pointer;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
  letter-spacing: 2px;
  opacity: 0.9;
  font-size: 12px;
}

.newsletter button,
.contact button {
  border-bottom: 2px solid var(--button-border);
  box-shadow: 0 8px 18px var(--button-shadow);
  backdrop-filter: blur(4px);
}

.newsletter button:hover,
.contact button:hover {
  transform: translateY(-3px);
  opacity: 0.8;
  box-shadow: 0 8px 18px var(--button-shadow-hover);
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
}

button:hover {
  transform: translateY(-3px);
  opacity: 0.8;
  box-shadow: 0 8px 18px var(--lang-theme-toogle-hover);
}

.contact-wrapper {
  margin-top: 50px;
  display: flex;
  gap: var(--gap-xl);
  align-items: flex-start;
  justify-content: flex-start;
}

.contact-info {
  /* flex: 0 0 350px; */
  line-height: 35px;
  max-width: 350px;
  font-size: 16px;
  color: var(--muted);
  padding-left: var(--space-sm);
}

.contact-info p {
  margin-bottom: var(--space-xs);
}

.service {
  opacity: 0.8;
  font-size: var(--space-sm);
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}


/* --------------------
   Footer
   -------------------- */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid var(--border-nav);
  line-height: 1.5;
  font-size: 12px;
  padding: 25px;
  text-align: center;
  gap: var(--space-md);
}

.footer-content {
  margin-top: var(--space-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  color: var(--muted);
}

.footer-content img {
  width: 40px;
  opacity: 1;
  border-radius: 50%;
}

.footer-content img:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-content a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.5s ease;
}

.footer-content p {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Inter", sans-serif;
  font-size: var(--space-xs);
  line-height: 1.4;
  padding: var(--space-xs);
}

/* --------------------
   Animations
   -------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(var(--fade-in-distance));
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------
   Responsive
   -------------------- */
@media (max-width: 700px) {
  .hero h1 {
    line-height: 1.2;
  }

  .hero::before {
    top: 55%;
    left: 30%;
    width: 450px;
    height: 450px;

    width: clamp(250px, 45vw, 700px);
    aspect-ratio: 1 / 1;
    width: 450px;
    height: 450px;
  }

  .newsletter-row {
    flex-direction: column;
  }

  #vectoriel,
  #aquarelle,
  #boutique {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #vectoriel .gallery,
  #aquarelle .gallery,
  #boutique .gallery {
    max-width: 360px;
    width: 100%;
    margin-inline: auto;
    justify-items: center;
  }

  #vectoriel .art-card,
  #aquarelle .art-card,
  #boutique .art-card,
  #boutique .support {
    width: 100%;
    max-width: 360px;
  }

  #vectoriel .section-header,
  #aquarelle .section-header,
  #boutique .section-header {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    align-items: flex-start;
    text-align: left;
  }

  nav {
    padding: var(--nav-padding-y-mobile) var(--nav-padding-x-mobile);
  }

  .grain {
    background-attachment: scroll;
  }

  .gallery {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .art-card {
    max-width: 350px;
  }

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

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
    max-width: 500px;
    flex: 0 0 500px;
  }

  .contact-info {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 800px) {
  .section h2,
  .newsletter h2,
  .contact h2 {
    font-size: 48px;
  }

  .section-tag,
  .art-card h3,
  .me h3,
  .support h3 {
    font-size: 20px;
  }

  .art-card p,
  .me p,
  .support p,
  .contact-info,
  .intro {
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .hero::before {
    width: 450px;
    height: 450px;

    width: clamp(250px, 45vw, 700px);
    aspect-ratio: 1 / 1;
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 1050px) {
  .contact-info {
    max-width: 250px;
  }

  nav ul {
    display: none;
  }

  .hamburger {
    color: var(--accent);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;

    background: none;
    border: none;
    cursor: pointer;

    padding: 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .hamburger svg {
    display: block;
  }

  .hamburger:hover {
    box-shadow: none;
    opacity: 0.45;
    transform: translateY(-2px);
    transition: 0.2s ease;
  }

  /* MENU MOBILE */
  .mobile-menu {
    position: fixed;
    top: 70px;
    right: 40px;

    width: 200px;
    padding: 30px;

    background: var(--bg-menu);
    backdrop-filter: blur(2px);

    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px var(--space-sm) var(--shadow);

    display: flex;
    flex-direction: column;
    gap: 20px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: 0.3s ease;

    z-index: 999999;
  }

  /* DARK MODE */
  body.dark .mobile-menu {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* OPEN STATE */
  .mobile-menu.open {
    background: var(--bg-menu);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    text-decoration: none;
    color: var(--text);
    transition: 0.2s ease;
  }

  .theme-toggle {
    background: none;
    border: 1px solid var(--text);
    color: var(--text);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: var(--transition);
  }

  .theme-toggle:hover {
    opacity: 0.6;
  }

  .lang-button {
    background: none;
    border: 1px solid var(--text);
    color: var(--text);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: var(--transition);
  }

  .lang-button,
  .theme-toggle {
    min-width: 60px;
  }

  .lang-button:hover {
    opacity: 0.6;
  }

  /* HOVER ANIMATION (léger + fluide) */
  .mobile-menu a:hover {
    opacity: 0.6;
    transform: translateX(4px);
  }

  /* CLOSE BUTTON */
  .close-menu {
    padding: 0;
    align-self: flex-end;
    color: var(--accent);
    opacity: 0.6;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }

  .close-menu:hover {
    opacity: 0.45;
    transform: translateY(-2px);
    transition: 0.2s ease;
  }
}

@media (max-width: 700px) {
  .bottom-fade {
    height: 80px;
  }

  .footer-content {
    gap: var(--space-sm);
  }

  .footer-content p {
    display: none;
  }

  .footer-content img {
    width: 30px;
  }
}

