.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background: #ffffff;
  display: grid;
  grid-template-rows: clamp(320px, 32.81vw, 440px) auto;
  overflow: hidden;
}

/* ── Main: marquee + CTA button ── */
.site-footer__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Marquee carousel ── */
.site-footer__marquee {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
}

.site-footer__marquee-track {
  display: flex;
  gap: clamp(40px, 4vw, 80px);
  width: max-content;
  animation: marquee 30s linear infinite;
}

.site-footer__marquee-text {
  font-family: "Editorial New", "Times New Roman", serif;
  font-size: var(--fs-marquee);
  font-weight: 300;
  color: var(--bg-light);
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.site-footer__cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.site-footer__reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 32px);
  width: clamp(280px, 23.44vw, 450px);
  padding: clamp(14px, 1.2vw, 18px) clamp(24px, 2.2vw, 40px);
  border-radius: 16px;
  background: var(--red);
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fs-body);
  line-height: 1;
  letter-spacing: 0.06em;
}

.site-footer__reserve-button svg {
  width: 24px;
  height: 24px;
}

.site-footer__reserve-button path {
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: square;
}

/* ── Bar: divider + bottom info ── */
.site-footer__bar {
  padding: 0 clamp(20px, 10.7vw, 206px) clamp(20px, 2.08vw, 40px);
  display: grid;
  row-gap: clamp(12px, 1vw, 20px);
}

.site-footer__divider {
  height: 1px;
  background: var(--red);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.site-footer__legal,
.site-footer__terms,
.site-footer__credit {
  color: var(--red);
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500;
  font-size: var(--fs-small);
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
}

.site-footer__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--red);
  font-family: "Poppins", Arial, sans-serif;
  font-size: var(--fs-small);
  line-height: 1.4;
}

.site-footer__lang p {
  margin: 0;
}

.site-footer__lang svg {
  width: 18px;
  height: 18px;
}

.site-footer__lang path {
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  stroke-linecap: square;
}

/* ── Floating reserve button ── */
.floating-reserve {
  position: fixed;
  bottom: clamp(24px, 3vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 32px);
  width: clamp(280px, 23.44vw, 450px);
  padding: clamp(14px, 1.2vw, 18px) clamp(24px, 2.2vw, 40px);
  border-radius: 16px;
  background: var(--red);
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fs-body);
  line-height: 1;
  letter-spacing: 0.06em;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-reserve svg {
  width: 24px;
  height: 24px;
}

.floating-reserve path {
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: square;
}

.floating-reserve.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

@media (max-width: 1024px) {
  .site-footer__bottom {
    justify-content: flex-start;
    gap: 16px 24px;
  }
}

@media (max-width: 767px) {
  .site-footer__bar {
    padding-inline: clamp(20px, 6vw, 72px);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
