.site-footer {
  position: relative;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1.4fr));
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 18px;
  background: conic-gradient(from 210deg, #d97a2b, #3e2c23, #f3e7d7, #d97a2b);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand__tagline {
  font-size: 0.85rem;
  color: rgba(255, 245, 233, 0.8);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  color: wheat;
}

.footer-links li + li {
  margin-top: 6px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-column--contact .footer-contact {
  font-size: 0.9rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-contact i {
  width: 16px;
  text-align: center;
}

.footer-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 245, 233, 0.75);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer-age-note {
  opacity: 0.8;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px 16px;
  background: linear-gradient(135deg, rgba(20, 10, 5, 0.98), rgba(37, 22, 16, 0.98));
  color: #fffaf3;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.45);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 220ms ease-out, opacity 220ms ease-out, visibility 220ms ease-out;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner__inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner__title {
  font-weight: 600;
  margin-bottom: 4px;
}

.cookie-banner__description {
  font-size: 0.9rem;
  color: rgba(255, 245, 233, 0.85);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner .btn {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.btn--primary {
  background: linear-gradient(135deg, #d97a2b, #b15e1c);
  color: #fff7ec;
  border-radius: 999px;
  padding: 8px 16px;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #e38632, #ba641f);
}

.btn--ghost {
  background: transparent;
  color: #fffaf3;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 245, 233, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 245, 233, 0.08);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .cookie-banner__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cookie-banner .btn {
    width: 100%;
    justify-content: center;
  }
}