:root {
  --bg-glass: rgba(10, 10, 10, 0.72);
  --bg-glass-scrolled: rgba(8, 8, 8, 0.92);
  --text-main: #eaeaea;
  --text-soft: #bdbdbd;
  --gold: #c9a55c;
  --gold-light: #e6c27a;
  --border-soft: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 8px 24px rgba(201, 165, 92, 0.22);
}

.lions-navbar-wrap * {
  box-sizing: border-box;
}

.lions-navbar-wrap .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  min-height: 78px;
  padding: 0 max(24px, calc((100% - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.72) 0%, rgba(6, 6, 6, 0.28) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: none;
  z-index: 9999;
  transition: background 0.35s ease, border-color 0.35s ease, min-height 0.35s ease, box-shadow 0.35s ease;
}

.lions-navbar-wrap .navbar.scrolled {
  top: 0;
  min-height: 68px;
  background: rgba(8, 8, 8, 0.94);
  border-bottom-color: rgba(201, 165, 92, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.lions-navbar-wrap .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--text-main);
  position: relative;
  z-index: 3;
}

.lions-navbar-wrap .logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.lions-navbar-wrap .logo span {
  /* Brand wordmark is inside the logo artwork */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lions-navbar-wrap .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1 1 auto;
  min-width: 0;
}

.lions-navbar-wrap .nav-menu a {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.lions-navbar-wrap .nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  border-radius: 0;
  transition: width 0.35s ease;
}

.lions-navbar-wrap .nav-menu a:hover,
.lions-navbar-wrap .nav-menu a.active,
.lions-navbar-wrap .nav-menu a.current-link {
  color: #f2f2f2;
}

.lions-navbar-wrap .nav-menu a.current-link {
  color: var(--gold);
}

.lions-navbar-wrap .nav-menu a:hover::after,
.lions-navbar-wrap .nav-menu a.active::after,
.lions-navbar-wrap .nav-menu a.current-link::after {
  width: 100%;
}

.lions-navbar-wrap .nav-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.lions-navbar-wrap .socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lions-navbar-wrap .socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: var(--text-main);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  transition: all 0.3s ease;
}

.lions-navbar-wrap .socials a:hover {
  color: #111;
  border-color: var(--gold);
  background: var(--gold);
  transform: none;
  box-shadow: none;
}

.lions-navbar-wrap .socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

.lions-navbar-wrap .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #f0f0f0;
  color: #111111;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
  transition: all 0.3s ease;
}

.lions-navbar-wrap .cta-btn:hover,
.lions-navbar-wrap .cta-btn:focus,
.lions-navbar-wrap .cta-btn:active {
  background: var(--gold);
  color: #111111;
  border-color: var(--gold);
  box-shadow: none;
  transform: none;
}

.lions-navbar-wrap .hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 5;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.lions-navbar-wrap .hamburger:hover {
  border-color: var(--gold);
}

.lions-navbar-wrap .hamburger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: #eaeaea;
  border-radius: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.lions-navbar-wrap .hamburger span:nth-child(1) { top: 15px; }
.lions-navbar-wrap .hamburger span:nth-child(2) { top: 22px; }
.lions-navbar-wrap .hamburger span:nth-child(3) { top: 29px; }

.lions-navbar-wrap .hamburger.active {
  border-color: var(--gold);
}

.lions-navbar-wrap .hamburger.active span:nth-child(1) {
  top: 22px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
}

.lions-navbar-wrap .hamburger.active span:nth-child(2) {
  opacity: 0;
}

.lions-navbar-wrap .hamburger.active span:nth-child(3) {
  top: 22px;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--gold);
}

@media (max-width: 1200px) {
  .lions-navbar-wrap .navbar {
    min-height: 72px;
    padding: 0 20px;
    gap: 16px;
  }

  .lions-navbar-wrap .logo img {
    width: 44px;
    height: 44px;
  }

  .lions-navbar-wrap .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 28px 24px 36px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 0;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
    border: 0;
    border-bottom: 1px solid rgba(201, 165, 92, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.35s ease;
    z-index: 2;
  }

  .lions-navbar-wrap .nav-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .lions-navbar-wrap .nav-menu a {
    width: 100%;
    text-align: left;
    font-size: 0.85rem;
    letter-spacing: 1.6px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .lions-navbar-wrap .nav-menu a:last-child {
    border-bottom: 0;
  }

  .lions-navbar-wrap .nav-menu a::after {
    display: none;
  }

  .lions-navbar-wrap .nav-menu a.current-link {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    padding: 16px 0;
    color: var(--gold);
  }

  .lions-navbar-wrap .nav-menu a.current-link::after {
    display: none;
  }

  .lions-navbar-wrap .socials {
    display: none;
  }

  .lions-navbar-wrap .cta-btn {
    display: inline-flex;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .lions-navbar-wrap .hamburger {
    display: block;
  }
}

@media (max-width: 640px) {
  .lions-navbar-wrap .navbar {
    min-height: 66px;
    padding: 0 16px;
    gap: 12px;
  }

  .lions-navbar-wrap .logo {
    gap: 8px;
    max-width: calc(100% - 58px);
  }

  .lions-navbar-wrap .logo img {
    width: 40px;
    height: 40px;
  }

  .lions-navbar-wrap .nav-actions {
    width: auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 8px;
  }

  .lions-navbar-wrap .nav-menu {
    padding: 20px 16px 28px;
  }

  .lions-navbar-wrap .nav-menu a {
    font-size: 0.8rem;
    padding: 14px 0;
  }

  .lions-navbar-wrap .hamburger {
    width: 42px;
    height: 42px;
  }

  .lions-navbar-wrap .hamburger span:nth-child(1) { top: 14px; }
  .lions-navbar-wrap .hamburger span:nth-child(2) { top: 21px; }
  .lions-navbar-wrap .hamburger span:nth-child(3) { top: 28px; }

  .lions-navbar-wrap .hamburger.active span:nth-child(1),
  .lions-navbar-wrap .hamburger.active span:nth-child(3) {
    top: 21px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600&display=swap');


/* ===== Opinie — pencil quotes ===== */
.lions-reviews {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #101010;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lions-reviews .reviews-section__container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

.lions-reviews .reviews-section__intro {
  max-width: 560px;
  margin: 0 0 42px;
}

.lions-reviews .reviews-block__eyebrow,
.lions-reviews .contact-location__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.lions-reviews .reviews-block__title {
  margin: 0 0 18px;
  color: #c9a55c;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.lions-reviews .reviews-section__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, #c9a55c, transparent);
}

.lions-reviews .reviews-block__subtitle {
  margin: 0;
  color: #a8a8a8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.lions-reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lions-reviews .review-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: none;
  transition: background 0.3s ease;
}

.lions-reviews .review-card:nth-child(3n) {
  border-right: 0;
}

.lions-reviews .review-card::before {
  display: none;
}

.lions-reviews .review-card:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.1);
}

.lions-reviews .review-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.lions-reviews .review-card__author {
  margin: 0;
  color: #f0f0f0;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
}

.lions-reviews .review-card__source {
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.lions-reviews .review-card__text {
  margin: 0;
  color: #a3a3a3;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.lions-reviews .reviews-section__bottom {
  margin-top: 36px;
}

.lions-reviews .reviews-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lions-reviews .reviews-section__button:hover {
  border-color: #c9a55c;
  color: #c9a55c;
}

@media (max-width: 1024px) {
  .lions-reviews {
    padding: 80px 0;
  }

  .lions-reviews .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lions-reviews .review-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lions-reviews .review-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .lions-reviews {
    padding: 64px 0;
  }

  .lions-reviews .reviews-grid {
    grid-template-columns: 1fr;
  }

  .lions-reviews .review-card,
  .lions-reviews .review-card:nth-child(2n),
  .lions-reviews .review-card:nth-child(3n) {
    border-right: 0;
  }

  .lions-reviews .reviews-section__button {
    width: 100%;
  }
}

/* ===== Kontakt — pencil split ===== */
.lions-contact {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #0e0e0e;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lions-contact .contact-location__container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

.lions-contact .contact-location__intro {
  max-width: 560px;
  margin: 0 0 42px;
}

.lions-contact .contact-location__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.lions-contact .contact-location__title {
  margin: 0 0 18px;
  color: #c9a55c;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.lions-contact .contact-location__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, #c9a55c, transparent);
}

.lions-contact .contact-location__subtitle {
  margin: 0;
  color: #a8a8a8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.lions-contact .contact-location__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.lions-contact .contact-location__map-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 420px;
  background: #161616;
}

.lions-contact .contact-location__map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
}

.lions-contact .contact-location__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  padding: 8px 28px 28px;
  display: flex;
  flex-direction: column;
}

.lions-contact .contact-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lions-contact .contact-item:last-of-type {
  margin-bottom: 8px;
}

.lions-contact .contact-item__label {
  display: block;
  margin-bottom: 8px;
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.lions-contact .contact-item__text,
.lions-contact .contact-item__link {
  margin: 0;
  color: #e6e6e6;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  text-decoration: none;
}

.lions-contact .contact-item__link:hover {
  color: #c9a55c;
}

.lions-contact .contact-location__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.lions-contact .contact-location__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lions-contact .contact-location__button:hover {
  border-color: #c9a55c;
  color: #c9a55c;
}

.lions-contact .contact-location__button--solid {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #111;
}

.lions-contact .contact-location__button--solid:hover {
  background: #c9a55c;
  border-color: #c9a55c;
  color: #111;
}

@media (max-width: 1024px) {
  .lions-contact {
    padding: 80px 0;
  }

  .lions-contact .contact-location__grid {
    grid-template-columns: 1fr;
  }

  .lions-contact .contact-location__map-wrap,
  .lions-contact .contact-location__map {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .lions-contact {
    padding: 64px 0;
  }

  .lions-contact .contact-location__card {
    padding: 4px 18px 18px;
  }

  .lions-contact .contact-location__actions {
    grid-template-columns: 1fr;
  }
}

/* ===== Final CTA — pencil ===== */
.lions-final-cta {
  position: relative;
  width: 100%;
  padding: 40px 0 100px;
  background: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lions-final-cta .final-cta__container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

.lions-final-cta .final-cta__box {
  position: relative;
  padding: 56px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121212;
  text-align: left;
  box-shadow: none;
  border-radius: 0;
}

.lions-final-cta .final-cta__box::before,
.lions-final-cta .final-cta__box::after {
  display: none;
}

.lions-final-cta .final-cta__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c9a55c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.lions-final-cta .final-cta__title {
  margin: 0 0 18px;
  color: #c9a55c;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.lions-final-cta .final-cta__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, #c9a55c, transparent);
}

.lions-final-cta .final-cta__text {
  margin: 0 0 28px;
  max-width: 480px;
  color: #a8a8a8;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.lions-final-cta .final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 2px;
  background: #f0f0f0;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: none;
}

.lions-final-cta .final-cta__button:hover {
  background: #c9a55c;
  color: #111;
  transform: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .lions-final-cta {
    padding: 24px 0 72px;
  }

  .lions-final-cta .final-cta__box {
    padding: 36px 22px;
  }

  .lions-final-cta .final-cta__button {
    width: 100%;
  }
}


.lions-footer {
  --footer-bg: #0a0a0a;
  --footer-text: #eaeaea;
  --footer-text-soft: #a8a8a8;
  --footer-border: rgba(255,255,255,0.08);
  --footer-gold: #c9a55c;
  --footer-transition: all 0.3s ease;
  --footer-container: 1280px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
  color: var(--footer-text);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lions-footer *,
.lions-footer *::before,
.lions-footer *::after {
  box-sizing: border-box;
}

.lions-footer::before {
  display: none;
}

.lions-footer .footer__container {
  position: relative;
  width: min(92%, var(--footer-container));
  margin: 0 auto;
  z-index: 1;
}

.lions-footer .footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 72px 0 42px;
}

.lions-footer .footer__brand {
  max-width: 280px;
}

.lions-footer .footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lions-footer .footer__logo img {
  width: 100%;
  max-width: 170px;
  height: auto;
  display: block;
  object-fit: contain;
}

.lions-footer .footer__heading {
  margin: 0 0 18px;
  color: #c9a55c;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.lions-footer .footer__nav,
.lions-footer .footer__socials,
.lions-footer .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lions-footer .footer__link,
.lions-footer .footer__social-link,
.lions-footer .footer__contact-link {
  color: var(--footer-text-soft);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: var(--footer-transition);
}

.lions-footer .footer__link {
  position: relative;
  width: fit-content;
}

.lions-footer .footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--footer-gold);
  transition: var(--footer-transition);
}

.lions-footer .footer__link:hover,
.lions-footer .footer__social-link:hover,
.lions-footer .footer__contact-link:hover,
.lions-footer .footer__credit a:hover {
  color: var(--footer-gold);
}

.lions-footer .footer__link:hover::after {
  width: 100%;
}

.lions-footer .footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.lions-footer .footer__social-link svg,
.lions-footer .footer__contact-item svg,
.lions-footer .footer__contact-link svg {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
  flex: 0 0 18px;
  display: block;
  fill: currentColor;
}

.lions-footer .footer__contact-item,
.lions-footer .footer__contact-link {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  column-gap: 10px;
  width: 100%;
  color: var(--footer-text-soft);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.lions-footer .footer__contact-text {
  margin: 0;
  color: var(--footer-text-soft);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.lions-footer .footer__bottom {
  padding: 22px 0 26px;
  border-top: 1px solid var(--footer-border);
}

.lions-footer .footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 24px;
}

.lions-footer .footer__bottom-text {
  margin: 0;
  color: var(--footer-text-soft);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.lions-footer .footer__credit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #cfcfcf;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.lions-footer .footer__credit a {
  --shine-duration: 8s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: #eaeaea;
  text-decoration: none;
  border-radius: 2px;
  background: #121212;
  isolation: isolate;
  transition: color 0.3s ease, background 0.3s ease;
}

.lions-footer .footer__credit a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background-image: radial-gradient(
    transparent,
    transparent,
    #8a7340,
    #c9a55c,
    #e6c27a,
    #c9a55c,
    transparent,
    transparent
  );
  background-size: 300% 300%;
  animation: footer-credit-shine var(--shine-duration) linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.lions-footer .footer__credit a:hover {
  color: #c9a55c;
  background: #161616;
}

.lions-footer .footer__credit a:hover::before {
  --shine-duration: 4s;
  animation-duration: 4s;
}

@keyframes footer-credit-shine {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lions-footer .footer__credit a::before {
    animation: none;
    background-image: linear-gradient(90deg, #8a7340, #c9a55c, #e6c27a);
  }
}

@media (max-width: 1100px) {
  .lions-footer .footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 58px 0 36px;
  }

  .lions-footer .footer__brand {
    max-width: 100%;
  }

  .lions-footer .footer__bottom-inner {
    flex-direction: column;
    gap: 10px;
  }

  .lions-footer .footer__credit {
    position: static;
    transform: none;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .lions-footer .footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 46px 0 30px;
  }

  .lions-footer .footer__brand {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .lions-footer .footer__logo {
    justify-content: center;
    width: 100%;
  }

  .lions-footer .footer__logo img {
    max-width: 150px;
    margin: 0 auto;
  }

  .lions-footer .footer__column {
    text-align: left;
  }

  .lions-footer .footer__heading {
    margin-bottom: 14px;
    font-size: 22px;
    text-align: left;
  }

  .lions-footer .footer__nav,
  .lions-footer .footer__socials,
  .lions-footer .footer__contact {
    align-items: flex-start;
  }

  .lions-footer .footer__link,
  .lions-footer .footer__social-link {
    width: fit-content;
    margin: 0;
  }

  .lions-footer .footer__contact-item,
  .lions-footer .footer__contact-link {
    max-width: 320px;
    margin: 0;
    text-align: left;
  }

  .lions-footer .footer__bottom {
    padding: 18px 0 22px;
  }

  .lions-footer .footer__bottom-text,
  .lions-footer .footer__credit {
    font-size: 13px;
    line-height: 1.7;
  }
}