/* ─── FOOTER ─── */
footer {
  background: #0d0d0d;
  color: #aaa;
  padding: 80px 0 40px;
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ─── FOOTER BRAND / LOGO LOCKUP ─── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


/* ─── FOOTER GRID ─── */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 80px;
  padding-bottom: 48px;
  justify-content: center;
}


.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #999;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

/* ─── FOOTER BOTTOM ─── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 12px;
  color: #777;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal-divider {
  color: #555;
  font-size: 12px;
}

/* ─── DELIVERY STRIP ─── */
.delivery-strip {
  background: var(--footer-bg);
  border-bottom: 1px solid var(--divider);
  padding: 16px 0;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}

.strip-item span {
  color: var(--gold);
}


/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, max-content);
    gap: 48px;
    text-align: center;
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 597px) {
  footer {
    padding: 60px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 40px;
    text-align: center;
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h5 {
    margin-bottom: 14px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
}

/* Small phones */
@media (max-width: 375px) {
  footer {
    padding: 50px 16px 25px;
  }

  .footer-col ul li a {
    font-size: 12px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 11px;
  }
}

/* ─── FOOTER SECRET TRIANGLE ─── */
.footer-secret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  color: #555;
  transition: opacity 400ms ease, color 400ms ease, transform 400ms ease;
  flex-shrink: 0;
}

.footer-secret svg {
  display: block;
}

.footer-secret:hover {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.25);
}

.footer-secret:focus-visible {
  opacity: 1;
  color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (max-width: 597px) {
  .footer-secret {
    order: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-secret {
    transition: none;
  }
}

/* Minimum (320px) */
@media (max-width: 320px) {
  .footer-col ul li a {
    font-size: 12px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 11px;
  }
}