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

html, body {
  height: 100%;
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 2;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
}

.nav__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.nav__cta {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border: 1px solid rgba(245, 241, 234, 0.5);
  border-radius: 999px;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.nav__cta:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.hero__content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.75rem;
  text-indent: 0.5em;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 65px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #ffffff;
  max-width: 16ch;
}

.hero__tagline {
  margin-top: 2rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: #ffffff;
  max-width: 52ch;
}

.concept {
  background: #ffffff;
  color: #000000;
  padding: 6rem 3rem 6rem 7rem;
  position: relative;
}

@media (max-width: 900px) {
  .concept {
    padding: 4rem 1.5rem;
  }
}

.concept__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
  align-items: center;
}

/* ---------- Bar map visual ---------- */

.concept__visual {
  display: flex;
  justify-content: center;
}

.card-flip {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1.05;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  perspective: 1600px;
  position: relative;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.card-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}

.card-flip.is-flipped .card-flip__inner,
.card-flip:hover .card-flip__inner,
.card-flip:focus-visible .card-flip__inner {
  transform: rotateY(180deg);
}

@media (hover: hover) {
  .card-flip.is-flipped:hover .card-flip__inner {
    transform: rotateY(360deg);
  }
}

.card-flip__face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
}

.card-flip__face--back {
  transform: rotateY(180deg);
}

.card-flip__face .barmap {
  max-width: none;
  aspect-ratio: auto;
  height: 100%;
}

.card-flip__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 30px 60px rgba(20, 17, 15, 0.35)) drop-shadow(0 10px 20px rgba(20, 17, 15, 0.15));
}

.card-flip__hint {
  position: absolute;
  bottom: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #000000;
  pointer-events: none;
  transition: color 0.3s ease;
}

.card-flip:hover .card-flip__hint {
  color: #000000;
}

.barmap--menu {
  background: linear-gradient(180deg, #f3ead9 0%, #e7dcc6 100%);
}

.menu-list {
  flex: 1;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.35rem;
  color: #000000;
}

.menu-list__name {
  font-style: normal;
}

.menu-list__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(107, 79, 58, 0.45);
  transform: translateY(-4px);
}

.menu-list__price {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #000000;
}

.menu-list__price::after {
  content: " €";
  font-size: 0.75rem;
}

.barmap {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(180deg, #faf6ef 0%, #f1e9dc 100%);
  border: 1px solid rgba(20, 17, 15, 0.08);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 30px 60px -30px rgba(20, 17, 15, 0.25),
    0 10px 20px -10px rgba(20, 17, 15, 0.1);
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.barmap::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(107, 79, 58, 0.18);
  pointer-events: none;
  border-radius: 2px;
}

.barmap__header,
.barmap__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.barmap__label::before {
  content: "✦  ";
  color: #000000;
}

.barmap__stage {
  flex: 1;
  position: relative;
  margin: 1.5rem 0;
}

.barmap__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.barmap__lines .line {
  stroke: #6b4f3a;
  stroke-width: 0.35;
  stroke-linecap: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  opacity: 0;
  fill: none;
}

@keyframes drawCall {
  0%   { stroke-dashoffset: 120; opacity: 0; }
  8%   { opacity: 0.7; }
  25%  { stroke-dashoffset: 0; opacity: 0.7; }
  30%  { opacity: 0.7; }
  33%  { opacity: 0; }
  100% { opacity: 0; stroke-dashoffset: 120; }
}

.line--1 { animation: drawCall 9s ease-in-out infinite; animation-delay: 0s; }
.line--2 { animation: drawCall 9s ease-in-out infinite; animation-delay: 3s; }
.line--3 { animation: drawCall 9s ease-in-out infinite; animation-delay: 6s; }

.table {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(107, 79, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 1.05rem;
  color: #000000;
  z-index: 2;
  box-shadow: 0 2px 8px -2px rgba(20, 17, 15, 0.08);
}

.table--self {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow:
    0 0 0 6px rgba(20, 17, 15, 0.04),
    0 0 0 14px rgba(20, 17, 15, 0.02);
}

@keyframes ringPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(107, 79, 58, 0.4), 0 0 0 0 rgba(107, 79, 58, 0.2);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(107, 79, 58, 0), 0 0 0 20px rgba(107, 79, 58, 0);
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.table--ring-1,
.table--ring-2,
.table--ring-3 {
  animation: ringPulse 9s ease-in-out infinite;
}
.table--ring-1 { animation-delay: 1s; }
.table--ring-2 { animation-delay: 4s; }
.table--ring-3 { animation-delay: 7s; }

.barmap__footer {
  border-top: 1px dashed rgba(107, 79, 58, 0.25);
  padding-top: 1.25rem;
}

.barmap__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c0432a;
  display: inline-block;
  margin-right: 0.65rem;
  vertical-align: middle;
  animation: blink 1.6s ease-in-out infinite;
}

.barmap__footer > span:last-child {
  margin-left: auto;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 980px) {
  .concept {
    padding: 6rem 1.5rem;
  }
  .concept__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .barmap {
    max-width: 420px;
    margin: 0 auto;
  }
}

.concept__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 1.25rem;
}

.concept__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #000000;
  display: inline-block;
}

.concept__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.005em;
  max-width: 18ch;
  color: #000000;
  margin-bottom: 1.25rem;
}

.concept__title em {
  font-style: normal;
  color: #000000;
}

.concept__lede {
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 300;
  color: #000000;
  max-width: 46ch;
  margin-bottom: 0.9rem;
}

.concept__lede strong {
  font-weight: 500;
  color: #000000;
}

.concept .concept__points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 46ch;
}

.concept .concept__point {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
}

.concept .concept__point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(20, 17, 15, 0.18);
  color: #000000;
  flex-shrink: 0;
}

.concept .concept__point-icon svg {
  width: 14px;
  height: 14px;
}

.concept .concept__point-body {
  display: block;
}

.concept .concept__point-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: #000000;
  margin: 0 0 0.2rem 0;
}

.concept .concept__point-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
  margin: 0;
  max-width: 42ch;
}

.concept .concept__closer {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: #000000;
  margin: 2.5rem 0 0;
  max-width: 24ch;
}

.concept .concept__closer em {
  font-style: normal;
  color: #000000;
}

.concept__audience {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 17, 15, 0.1);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #000000;
}

.concept__audience .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c9b89e;
}

/* ---------- Bar map visual ---------- */

.concept__visual {
  display: flex;
  justify-content: center;
}


/* ---------- Cocktails ---------- */

.cocktails {
  background: #0a0a0a;
  color: #ffffff;
  padding: 8rem 0;
  overflow: hidden;
}

.cocktails__head {
  max-width: 1180px;
  margin: 0 auto 5rem;
  padding: 0 3rem;
}

.cocktails__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
}

.cocktails__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  display: inline-block;
}

.cocktails__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: #ffffff;
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.cocktails__title em {
  font-style: normal;
  color: #ffffff;
}

.cocktails__lede {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: #ffffff;
  max-width: 52ch;
  opacity: 0.75;
}

.cocktails__marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.cocktails__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: cocktailScroll 60s linear infinite;
  padding: 0 1.25rem;
}

.cocktails__marquee:hover .cocktails__track {
  animation-play-state: paused;
}

@keyframes cocktailScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cocktail-card {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  transition: border-color 0.3s ease, transform 0.4s ease;
}

.cocktail-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.cocktail-card__img {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cocktail-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.cocktail-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.005em;
}

.cocktail-card__message {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.cocktail-card__ingredients {
  font-size: 0.85rem;
  line-height: 1.55;
  font-weight: 300;
  color: #ffffff;
  opacity: 0.6;
}

@media (max-width: 820px) {
  .cocktails {
    padding: 5rem 0;
  }
  .cocktails__head {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
  }
  .cocktail-card {
    flex: 0 0 270px;
  }
  .cocktail-card__img {
    height: 220px;
  }
}

/* ---------- Contact ---------- */

.contact {
  background: #000000;
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.contact__inner {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 90vh;
  position: relative;
}

.contact__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.contact__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.contact__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact__form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3rem;
  max-width: 560px;
  width: calc(100% - 3rem);
  margin: 5rem auto;
  background: rgba(15, 8, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  text-align: center;
  align-items: center;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.contact__form .contact__eyebrow,
.contact__form .contact__title,
.contact__form .contact__lede {
  text-align: center;
}

.contact__form .contact__choices,
.contact__form .contact__fields {
  width: 100%;
}

@media (max-width: 900px) {
  .contact__form {
    padding: 2.5rem 1.5rem;
    margin: 2rem auto;
  }
}

.contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.contact__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact__title em {
  font-style: normal;
  color: #ffffff;
}

.contact__lede {
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.75rem;
}

.contact__choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.choice {
  cursor: pointer;
  display: block;
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(244, 231, 206, 0.18);
  border-radius: 2px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.choice:hover .choice__inner {
  border-color: rgba(244, 231, 206, 0.4);
}

.choice input:checked + .choice__inner {
  border-color: #d9a87a;
  background: rgba(217, 168, 122, 0.08);
}

.choice__num {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-size: 0.85rem;
  color: #ffffff;
  letter-spacing: 0.15em;
}

.choice__label {
  font-size: 0.92rem;
  font-weight: 300;
  color: #ffffff;
}

.contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffffff;
}

.field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.25s ease;
}

.field input:focus {
  border-color: #d9a87a;
}

.contact__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
}

.contact__submit:hover {
  background: #ffffff;
  gap: 1rem;
}

@media (max-width: 820px) {
  .contact {
    padding: 4rem 1.5rem;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact__image {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
  .contact__fields {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ---------- Footer ---------- */

.footer {
  background: #0a0505;
  color: #ffffff;
  padding: 1.75rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.social:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer__meta {
  justify-self: end;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 640px) {
  .nav {
    padding: 1.25rem 1.5rem;
  }
  .hero__tagline {
    letter-spacing: 0.3em;
    font-size: 0.75rem;
  }
  .footer {
    padding: 1.5rem;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
    justify-items: center;
  }
  .footer__meta {
    justify-self: center;
  }
}
