/* ==========================================================
   STUDIO MARLOWE — charte noir & blanc typographique
   ========================================================== */

:root {
  --black: #000;
  --white: #fff;
  --grey: #f2f2f0;
  --grey-dark: #191919;
  --font: "Jost", sans-serif;
  --track: 0.19em;
  --pad: clamp(20px, 4vw, 60px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track);
  padding: 14px 28px;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--black);
  color: var(--white);
}

.btn-solid {
  background: var(--black);
  color: var(--white);
}

.btn-solid:hover {
  background: transparent;
  color: var(--black);
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn-big {
  padding: 18px 44px;
  font-size: 13px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 10px;
}

.badge-white {
  color: var(--white);
}

/* ============ EMPLACEMENTS IMAGES ============ */
/* Blocs galerie : remplacer le contenu par <img src="..."> — toutes les photos au format 6720×4480 (ratio 3:2) */
.img-slot {
  position: relative;
  background: var(--grey);
  border: 1px dashed rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
}

.img-slot span {
  font-family: var(--font);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
}

.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-slot:has(img) {
  border: none;
  background: none;
}

/* Galerie : ligne statique de 2 images fixes */
.gallery-static-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.gallery-static-row .img-slot {
  flex: 1 1 0;
}

/* Galerie : ligne défilante — 2 images visibles, le surplus déborde et suit la souris pour être révélé */
.gallery-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  cursor: ew-resize;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-row::-webkit-scrollbar {
  display: none;
}

.gallery-tile {
  flex: 0 0 calc(38% - 7px);
}

/* Sections avec image de fond : remplacer par background-image sur la section */
.img-bg {
  position: relative;
}

.slot-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  font-family: var(--font);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.5);
}

.dark .slot-tag {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.4);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--pad);
  background: var(--white);
  border-bottom: 1px solid var(--black);
  transition: top 0.3s ease;
}

.nav.nav-hidden {
  top: calc(-1 * var(--nav-h, 220px) - 20px);
}

.nav-spacer {
  height: 190px;
}

.nav-logo {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 208px;
}

.nav-logo img {
  height: 262px;
  width: auto;
  max-width: calc(100vw - 120px);
  transform: translateY(15px);
}

.nav-links {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-self: start;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  align-self: flex-start;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-contact {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  justify-self: end;
}

.nav-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.nav-contact-info a,
.nav-contact-info span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.nav-book-btn {
  padding: 12px 22px;
  white-space: nowrap;
}

.nav-burger {
  grid-column: 3;
  justify-self: end;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  position: relative;
  z-index: 105;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: transform 0.25s ease, background-color 0.25s ease, opacity 0.2s ease;
}

body.menu-open .nav-burger span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .nav-burger span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Fond estompé discret (cliquable pour fermer) */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

/* Menu mobile compact déroulant sous la navbar */
.mobile-menu {
  position: fixed;
  top: var(--nav-h, 110px);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--black);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 24px var(--pad) 28px;
  gap: 20px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
}

body.menu-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-links a {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  transition: opacity 0.2s ease;
}

.mobile-menu-links a:hover {
  opacity: 0.6;
}

.mobile-book-btn {
  align-self: flex-start;
  padding: 12px 24px;
  font-size: 11px;
  margin-top: 4px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  aspect-ratio: 3 / 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 0 0;
  border-left: var(--pad) solid var(--white);
  border-right: var(--pad) solid var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.6) 100%), url("../assets/photo-01-hero.jpg") center / cover no-repeat;
  filter: brightness(1.25);
}

.hero-inner,
.hero-foot {
  position: relative;
  z-index: 1;
}

.hero-inner {
  padding: 0 var(--pad) 70px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-kicker {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(14px, 2.7vw, 39px);
  margin-bottom: 40px;
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 18px var(--pad);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-foot a:first-child {
  justify-self: start;
}

.hero-foot a:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.hero-foot a:last-child {
  justify-self: end;
  text-align: right;
}

.hero-foot a {
  position: relative;
  transition: opacity 0.2s ease;
}

.hero-foot a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.25s ease;
}

.hero-foot a:hover {
  opacity: 0.7;
}

.hero-foot a:hover::after {
  width: 100%;
}

/* ============ INTRO ============ */
.intro {
  padding: clamp(50px, 7vw, 100px) var(--pad);
}

.intro-tagline {
  font-size: clamp(18px, 2.4vw, 32px);
  line-height: 1.15;
  max-width: 1050px;
  margin-bottom: clamp(36px, 5vw, 72px);
}

/* ============ SECTIONS GÉNÉRIQUES ============ */
.section {
  padding: clamp(50px, 7vw, 90px) var(--pad);
}

.section-border {
  border-top: 1px solid var(--black);
}

.section-head {
  margin-bottom: clamp(28px, 4vw, 56px);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.spec {
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 34px 28px 44px;
  transition: background 0.25s ease, color 0.25s ease;
}

.spec:hover {
  background: var(--black);
  color: var(--white);
}

.spec h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.spec li,
.spec p {
  font-size: 15px;
  line-height: 1.7;
}

.spec-note {
  margin-top: 14px;
  font-family: var(--font);
  font-style: normal;
  font-size: 13px !important;
  opacity: 0.7;
}

/* Sections Studio & Services : pas de grille, cases resserrées, survol discret */
#studio .specs-grid,
#services .specs-grid {
  border-top: none;
  border-left: none;
  gap: 12px 32px;
}

#studio .spec,
#services .spec {
  border-right: none;
  border-bottom: none;
  padding: 20px 28px 28px;
}

#studio .spec:hover,
#services .spec:hover {
  background: var(--grey);
  color: var(--black);
}

/* ============ TARIFS ============ */
.tarifs {
  padding: clamp(50px, 7vw, 90px) var(--pad);
}

.tarifs-layout {
  position: relative;
}

.tarifs-image {
  width: 100%;
  position: relative;
}

.tarifs-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 40%);
  pointer-events: none;
}

.tarifs-prices {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(24px, 4vw, 56px);
  color: var(--white);
}

.tarif-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.tarif-price-sm {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}

.tarif-price-sm em {
  font-family: var(--font);
  font-style: normal;
  font-weight: 500;
  font-size: 0.45em;
  vertical-align: super;
  letter-spacing: 0.05em;
}

.tarif-desc-sm {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 260px;
}

/* ============ RÉSERVER ============ */
.booking {
  background: var(--grey-dark);
  /* remplacé par l'image 13 */
  color: var(--white);
  height: min(150vw, 100vh);
  padding: 0;
  border-left: var(--pad) solid var(--white);
  border-right: var(--pad) solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.booking h2 {
  font-size: clamp(46px, 8vw, 110px);
}

.booking p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--grey);
  padding: clamp(50px, 7vw, 90px) var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 80px);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--black);
  padding: clamp(30px, 5vw, 70px);
  width: min(680px, 100%);
  flex: 1 1 52%;
}

.contact-rows {
  margin-top: 44px;
}

.contact-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid var(--black);
  padding: 20px 0;
}

.contact-row:first-child {
  border-top: 1px solid var(--black);
}

.contact-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track);
  flex-shrink: 0;
}

.contact-row a {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  text-align: right;
}

.contact-row a.contact-address {
  font-size: clamp(10px, 1.8vw, 22px);
}

.contact-row a:hover {
  opacity: 0.6;
}

.contact-logo {
  flex: 1 1 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo img {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--black);
  padding: 16px var(--pad) 14px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.footer-credit {
  text-align: center;
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-credit:hover {
  color: #ff3366;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-bottom span {
  white-space: nowrap;
}

.footer-top {
  text-align: right;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.footer-top:hover {
  opacity: 0.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {

  .nav-links,
  .nav-contact {
    display: none;
  }

  .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
  }

  .nav-logo {
    justify-self: center;
    margin: 0 auto;
  }

  .nav-burger {
    display: block;
    position: absolute;
    right: var(--pad);
    top: 50%;
    transform: translateY(-50%);
  }

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

  .contact {
    flex-direction: column;
    gap: 40px;
  }

  .contact-card {
    width: 100%;
  }

  .contact-logo img {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 14px;
    --track: 0.12em;
  }

  /* Navigation mobile : logo parfaitement centré */
  .nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-logo {
    height: 110px;
    margin: 0 auto;
  }

  .nav-burger {
    position: absolute;
    right: var(--pad);
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-logo img {
    height: 125px;
    transform: translateY(6px);
  }

  .nav-spacer {
    height: 110px;
  }

  /* Hero mobile : titre au-dessus, image aux mêmes dimensions que les tarifs, et texte du bas sur l'image */
  .hero {
    position: relative;
    aspect-ratio: auto;
    min-height: 0;
    padding: 24px var(--pad) 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: var(--black);
    border-left: none;
    border-right: none;
    overflow: visible;
  }

  .hero-inner {
    padding: 0 0 20px;
    text-shadow: none;
    order: 1;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.6);
  }

  .hero h1 {
    font-size: clamp(24px, 7.5vw, 34px);
    margin-bottom: 0;
    line-height: 1.1;
    color: var(--black);
  }

  /* Image hero : mêmes dimensions que tarifs, avec léger voile en bas pour la lisibilité */
  .hero::before {
    content: "";
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    background: linear-gradient(to bottom, transparent 65%, rgba(0, 0, 0, 0.6) 100%), url("../assets/photo-01-hero.jpg") center / cover no-repeat;
    filter: none;
    border-left: none;
    border-right: none;
    order: 2;
  }

  /* Hero foot mobile : SUR l'image en bas, texte blanc, avec espacement net entre adresse et cyclorama */
  .hero-foot {
    order: 3;
    position: absolute;
    left: var(--pad);
    right: var(--pad);
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 12px;
    font-size: 6.8px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
    color: var(--white);
  }

  .hero-foot a:first-child {
    justify-self: start;
    text-align: left;
    margin-right: 6px;
  }

  .hero-foot a:nth-child(2) {
    justify-self: center;
    text-align: center;
    padding: 0 4px;
  }

  .hero-foot a:last-child {
    justify-self: end;
    text-align: right;
  }

  .hero-foot a {
    white-space: nowrap;
    color: var(--white);
  }

  .hero-foot a::after {
    background: var(--white);
  }

  /* Intro */
  .intro {
    padding: 40px var(--pad);
  }

  .intro-tagline {
    font-size: clamp(15px, 4.2vw, 20px);
    line-height: 1.35;
    margin-bottom: 28px;
  }

  /* Galeries */
  .gallery-static-row {
    gap: 8px;
    margin-bottom: 8px;
  }

  .gallery-row {
    gap: 8px;
  }

  .gallery-tile {
    flex: 0 0 78%;
  }

  /* Sections génériques & Specs */
  .section {
    padding: 40px var(--pad);
  }

  .section-head {
    margin-bottom: 24px;
  }

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

  .spec {
    padding: 22px 18px 26px;
  }

  .spec h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .spec li,
  .spec p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .spec-note {
    font-size: 11px !important;
  }

  #studio .spec,
  #services .spec {
    padding: 16px 14px 20px;
  }

  /* Tarifs mobile : texte sorti de l'image */
  .tarifs {
    padding: 40px var(--pad);
  }

  .tarifs-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .tarifs-image {
    width: 100%;
    aspect-ratio: 3 / 2;
  }

  .tarifs-image::after {
    display: none;
    /* plus de voile sombre sur l'image */
  }

  .tarifs-prices {
    position: static;
    padding: 0;
    color: var(--black);
    gap: 24px;
  }

  .tarif-item {
    gap: 8px;
  }

  .tarif-price-sm {
    font-size: 26px;
    color: var(--black);
  }

  .tarif-desc-sm {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
    max-width: 100%;
  }

  .tarif-item .btn {
    padding: 12px 20px;
    font-size: 10.5px;
    border-color: var(--black);
    color: var(--black);
  }

  .tarif-item .btn:hover {
    background: var(--black);
    color: var(--white);
  }

  /* Réservation */
  .booking {
    height: auto;
    min-height: 480px;
    padding: 60px 0;
  }

  .booking-inner {
    gap: 20px;
    padding: 0 16px;
  }

  .booking h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.05;
  }

  .booking p {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .booking .btn-big {
    padding: 14px 26px;
    font-size: 11.5px;
  }

  /* Contact */
  .contact {
    padding: 40px var(--pad);
  }

  .contact-card {
    padding: 24px 18px;
  }

  .contact-rows {
    margin-top: 26px;
  }

  .contact-row {
    padding: 14px 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .contact-label {
    font-size: 10px;
    flex-shrink: 0;
  }

  .contact-row a {
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: right;
    white-space: nowrap;
  }

  .contact-row a.contact-address {
    font-size: clamp(8px, 2.7vw, 11px);
  }

  .contact-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 10px auto 0;
  }

  .contact-logo img {
    margin: 0 auto;
    max-width: 260px;
    height: auto;
  }

  /* Footer mobile : Créé par Loon au-dessus et centré, le reste côte à côte */
  .footer {
    padding: 12px var(--pad);
  }

  .footer-inner {
    gap: 8px;
  }

  .footer-credit {
    font-size: 7.5px;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 6.8px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .footer-bottom span {
    text-align: left;
  }

  .footer-top {
    text-align: right;
  }
}