@charset "UTF-8";
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__brand {
  text-decoration: none;
}
.footer-nav {
  justify-content: flex-end;
}
.footer-legal {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    justify-content: flex-start;
  }
}
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
  background: rgba(253, 253, 252, 0.98);
  box-shadow: 0 -14px 34px rgba(12, 22, 21, 0.18);
  border-top: 1px solid var(--color-border-subtle);
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}
.cookie-banner__title {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}
.cookie-banner__desc {
  font-size: 0.86rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.cookie-banner__btn {
  font-size: 0.78rem;
  padding-inline: 1rem;
  padding-block: 0.5rem;
}
@media (max-width: 720px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
  }
}
.age-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.age-gate-modal[hidden] {
  display: none !important;
}
.age-gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(253, 253, 252, 0.85) 0, rgba(242, 247, 245, 0.85) 35%, rgba(14, 26, 24, 0.45) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.age-gate-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  border-radius: 26px;
  background: linear-gradient(135deg, #fdfdfc 0%, #f7faf8 100%);
  padding: 2.2rem 2.4rem;
  border: 1px solid rgba(194, 147, 82, 0.35);
  box-shadow: 0 24px 60px rgba(6, 12, 11, 0.22);
}
.age-gate-modal__kicker {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #556360;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.age-gate-modal__title {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 1.65rem;
  font-weight: 600;
  color: #1b1f1e;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.age-gate-modal__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #556360;
  margin-bottom: 1.75rem;
}
.age-gate-modal__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.age-gate-modal__enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: #c29352;
  color: #ffffff;
  border: 1px solid #c29352;
  box-shadow: 0 8px 20px rgba(194, 147, 82, 0.32);
  transition: all 0.2s ease;
}
.age-gate-modal__enter:hover {
  background: #b28344;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(194, 147, 82, 0.42);
}
.age-gate-modal__enter:active {
  transform: translateY(0);
}
.age-gate-modal__leave {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: #fdfdfc;
  color: #1b1f1e;
  border: 1px solid rgba(85, 99, 96, 0.35);
  box-shadow: none;
  transition: all 0.2s ease;
}
.age-gate-modal__leave:hover {
  background: #f0f4f2;
  border-color: rgba(85, 99, 96, 0.6);
  transform: translateY(-1px);
}
.age-gate-modal__leave:active {
  transform: translateY(0);
}
@media (max-width: 520px) {
  .age-gate-modal__dialog {
    border-radius: 20px;
    padding: 1.5rem;
  }
  .age-gate-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .age-gate-modal__enter,
  .age-gate-modal__leave {
    width: 100%;
    text-align: center;
  }
}
body.age-gate-locked {
  overflow: hidden !important;
}