.footer-shell {
  position: relative;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: var(--space-4);
}

.footer-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fdf8f1;
  background: radial-gradient(circle at 20% 0, #f6e7d0, transparent 60%), linear-gradient(145deg, #c9a46a, #b88c46);
  box-shadow: 0 12px 30px rgba(18, 10, 4, 0.45);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-logo-subtitle {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-4);
}

.footer-trust-item {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(201, 164, 106, 0.08);
  border: 1px solid rgba(201, 164, 106, 0.45);
  color: var(--color-text-soft);
}

.footer-links,
.footer-legal-newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-legal-newsletter {
  justify-content: space-between;
}

.footer-newsletter-copy {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
}

.footer-newsletter-form {
  margin-top: var(--space-2);
}

.footer-newsletter-input {
  align-items: stretch;
}

.footer-newsletter-input input {
  flex: 1;
}

.footer-newsletter-input .btn {
  padding-inline: 1.4rem;
}

.footer-bottom-copy {
  margin-bottom: 0.35rem;
}

.footer-bottom-note {
  margin-bottom: 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer-bottom-left {
  max-width: 32rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  padding: var(--space-3) var(--space-4);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  max-width: 980px;
  width: 100%;
  border-radius: var(--radius-glass);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.97), rgba(244, 236, 225, 0.98));
  box-shadow: var(--shadow-glass);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: var(--space-4);
  pointer-events: auto;
  transform: translateY(110%);
  opacity: 0;
  transition: transform var(--transition-soft), opacity var(--transition-soft);
}

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

.cookie-banner-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.cookie-banner-desc {
  font-size: var(--text-sm);
}

.cookie-banner-link {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  justify-content: center;
}

.cookie-btn-decline {
  width: 100%;
}

.cookie-btn-accept {
  width: 100%;
}

@media (min-width: 768px) {
  .cookie-banner-actions {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .cookie-btn-decline,
  .cookie-btn-accept {
    width: auto;
  }
}

@media (max-width: 767.98px) {
  .cookie-banner-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.age-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(8, 4, 2, 0.75), rgba(8, 4, 2, 0.9));
  backdrop-filter: blur(18px);
}

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

.age-modal {
  max-width: 600px;
  width: 100%;
  margin: 0 var(--space-4);
  border-radius: var(--radius-glass);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(247, 241, 232, 0.98));
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: var(--space-6);
}

.age-modal-header {
  margin-bottom: var(--space-4);
}

.age-modal-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.age-modal-title {
  font-size: var(--text-3xl);
  line-height: var(--heading-line-tight);
}

.age-modal-body p {
  font-size: var(--text-sm);
}

.age-modal-actions {
  margin-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .age-modal-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}

.age-confirm-yes {
  flex: 0 0 auto;
}

.age-confirm-no {
  flex: 0 0 auto;
}

@media (max-width: 575.98px) {
  .age-confirm-yes,
  .age-confirm-no {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .footer-top {
    margin-top: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
