/* ─── FOOTER ─── */
footer {
  background: var(--footer-bg);
  color: var(--footer-title);
  padding: 80px 0 40px;
  border-top: 3px solid var(--gold);
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* ─── FOOTER BRAND / LOGO LOCKUP ─── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

footer .footer-brand img {
  width: 114px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.nav-footer-logo-text {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* gap: 2px; */
  line-height: 0.1;
  /* fixed: was 0, which collapses on reflow */
  align-items: center;
  margin-bottom: 11px;
}

footer .nav-footer-logo-text .phase-one {
  font-family: 'Gotham-Bold', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  line-height: 0.1;
  white-space: nowrap;
  display: block;
}

footer .nav-footer-logo-text .visuals {
  font-family: 'Gotham-Bold', sans-serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: #D49B54;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 0.1;
  white-space: nowrap;
  display: block;
}

/* ─── FOOTER GRID ─── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--divider);
}

.footer-brand p {
  font-size: 14px;
  color: var(--footer-text);
  line-height: 1.7;
  margin-top: 20px;
  /* max-width: 280px; */
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  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: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

/* ─── FOOTER BOTTOM ─── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--footer-text);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  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: 1fr;
    gap: 40px;
    text-align: center;
  }

  footer .footer-logo {
    justify-content: center;
  }

  footer .footer-brand {

    grid-column: 1 / -1;
    gap: 20px;
    text-align: center;

  }
}

/* Mobile */
@media (max-width: 597px) {
  footer {
    padding: 60px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  .footer-logo {
    gap: 10px;
  }

  /* footer .footer-brand img {
    width: 44px;
  } */

  footer .nav-footer-logo-text .phase-one {
    font-size: 17px;
  }

  footer .nav-footer-logo-text .visuals {
    font-size: 11px;
    letter-spacing: 0.3em;
  }

  .footer-brand p {
    font-size: 13px;
    max-width: 100%;
  }

  .footer-col h5 {
    margin-bottom: 14px;
  }

  .footer-col ul li a {
    font-size: 13px;
    display: inline-block;
    padding: 4px 0;
  }

  .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 .footer-brand img {
    width: 38px;
  }

  footer .nav-footer-logo-text .phase-one {
    font-size: 15px;
  }

  footer .nav-footer-logo-text .visuals {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .footer-col ul li a {
    font-size: 12px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 11px;
  }
}

/* Minimum (320px) */
@media (max-width: 320px) {
  footer .nav-footer-logo-text .phase-one {
    font-size: 13px;
  }

  footer .nav-footer-logo-text .visuals {
    font-size: 9px;
    letter-spacing: 0.15em;
  }
}