/* Footer Layout */
.site-footer {
  background-color: var(--color-bg-elevated);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* Footer Brand */
.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  display: inline-block;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  max-width: 300px;
}

/* Footer Navigation */
.footer-nav h3,
.footer-legal h3,
.footer-contact h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-legal li {
  margin-bottom: var(--space-2);
}

.footer-nav a,
.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-secondary);
}

/* Footer Contact */
.footer-contact address {
  font-style: normal;
  margin-bottom: var(--space-4);
}

.footer-contact p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.footer-contact a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.footer-contact a:hover {
  color: var(--color-secondary);
}

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-neutral-700);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all var(--duration-base);
}

.social-links a:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--color-neutral-800);
  padding-top: var(--space-8);
  text-align: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-elevated);
  border-top: 1px solid var(--color-secondary);
  padding: var(--space-6);
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform var(--duration-base) var(--ease-out);
}

.cookie-banner[hidden] {
  display: block;
  transform: translateY(100%);
  pointer-events: none;
}

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

.cookie-content p {
  flex: 1;
  min-width: 200px;
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-sm);
}

.cookie-actions {
  display: flex;
  gap: var(--space-4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

.age-restriction {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.age-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.age-modal {
  position: relative;
  background: linear-gradient(145deg, var(--color-bg-elevated) 0%, var(--color-bg) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  max-width: 500px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), var(--shadow-gold);
  text-align: center;
  animation: ageFadeIn var(--duration-slow) var(--ease-out);
}

@keyframes ageFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.age-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.age-desc {
  color: var(--color-text);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.age-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-6);
}

.age-btn-yes,
.age-btn-no {
  min-width: 140px;
}

.age-disclaimer {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

.age-disclaimer a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.age-disclaimer a:hover {
  color: var(--color-secondary-light);
}

.age-restriction[hidden] {
  display: none;
}

body.age-locked {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 480px) {
  .age-modal {
    padding: var(--space-8) var(--space-6);
  }
  
  .age-actions {
    flex-direction: column;
  }
  
  .age-btn-yes,
  .age-btn-no {
    width: 100%;
  }
}