/* ============================================================
   footer.css — site-wide footer styles
   Link this from every page that includes the shared footer.
   ============================================================ */

.site-footer {
  background: #0a0a0a;
  font-family: var(--font-sans);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 3rem;
  padding: 1.8rem 0;
}

.footer-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}

.footer-menu {
  padding-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.footer-col h3 {
  color: #fff;
  font-size: calc(11px * var(--font-scale));
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0 0 1rem 0;
  padding: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col ul li a {
  color: #666;
  font-size: calc(12px * var(--font-scale));
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
  display: inline-block;
}

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

.footer-col-toggle {
  display: none;
}

.footer-brand-bar {
  padding: 2rem 0 1rem;
  border-top: 0.5px solid #222;
  margin-top: 2rem;
}

.footer-brand-eyebrow {
  font-size: calc(10px * var(--font-scale));
  letter-spacing: 0.18em;
  color: #444;
  margin-bottom: 0.75rem;
}

.footer-brand-eyebrow a{
  color: #c9b47a;
  margin-left: 8px;
  font-size: calc(8px * var(--font-scale));
  letter-spacing: 0.08em;
  text-decoration: none;
}
.footer-brand-eyebrow a:hover{
  color: #ffffff;
}

.footer-brand-names {
  font-size: calc(11px * var(--font-scale));
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-base {
  border-top: 0.5px solid #222;
  padding: 1rem 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-base-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #888 !important; 
}

.footer-base-phone {
  font-size: calc(8px * var(--font-scale));
  letter-spacing: 0.04em;
}

.footer-base-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  font-size: calc(8px * var(--font-scale));
  color: #666;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social a {
  color: #555;
  font-size: calc(16px * var(--font-scale));
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: #c9b47a;
}

.footer-back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0.5px solid #333;
  border-radius: 50%;
  color: #555;
  font-size: calc(12px * var(--font-scale));
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
  background: transparent;
}

.footer-back-top:hover {
  border-color: #c9b47a;
  color: #c9b47a;
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
  .site-footer {
    margin-top: 2rem;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .footer-menu {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: 0;
  }

  .footer-col {
    border-bottom: 0.5px solid #222;
  }

  .footer-col:first-child {
    border-top: 0.5px solid #222;
  }

  .footer-col h3 {
    padding: 14px 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: calc(12px * var(--font-scale));
    letter-spacing: 0.08em;
  }

  .footer-col h3::after {
    content: "+";
    font-size: calc(16px * var(--font-scale));
    font-weight: 300;
    color: #555;
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .footer-col-toggle:checked ~ ul {
    display: flex;
  }

  .footer-col-toggle:checked ~ label h3::after {
    transform: rotate(45deg);
  }

  .footer-col ul {
    display: none;
    padding: 0 0 14px 0;
    gap: 0;
  }

  .footer-col ul li a {
    display: block;
    padding: 7px 0;
    color: #666;
    font-size: calc(13px * var(--font-scale));
  }

  .footer-brand-bar {
    padding: 1.5rem 0 0.75rem;
    margin-top: 1.5rem;
  }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0 2rem;
  }

  .footer-base-right {
    width: 100%;
    justify-content: space-between;
  }

  .footer-back-top {
    display: none;
  }
}
