/* ═══════════════════════════════════════════
   FOOTER STYLES
═══════════════════════════════════════════ */

.blkg-footer {
  background: var(--obsidian);
  border-top: 1px solid var(--rule-dark);
  position: relative;
}

/* ── Footer Body ── */
.blkg-footer-body {
  padding: 5rem 0 4rem;
}

.blkg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

/* ── Brand Column ── */
.blkg-footer-logo-link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.blkg-footer-logo-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.blkg-footer-logo-sub {
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* Custom logo in footer */
.blkg-footer-logo img {
  max-height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0.9);
}

.blkg-footer-tagline {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid-gray);
  margin-bottom: 2rem;
  max-width: 300px;
}

.blkg-footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blkg-footer-email,
.blkg-footer-hours {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--light-gray);
  transition: color 0.3s;
  text-decoration: none;
}
.blkg-footer-email svg,
.blkg-footer-hours svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
}
.blkg-footer-email:hover { color: var(--gold-light); }

/* ── Column Titles ── */
.blkg-footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule-dark);
}

/* ── Nav Column ── */
.blkg-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blkg-footer-nav-list li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.blkg-footer-nav-list li:last-child { border-bottom: none; }

.blkg-footer-nav-list a {
  display: block;
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--light-gray);
  padding: 0.6rem 0;
  transition: color 0.3s var(--ease-luxury), padding-left 0.3s var(--ease-luxury);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.blkg-footer-nav-list a:hover {
  color: var(--gold-light);
  padding-left: 0.5rem;
}

/* ── Services List ── */
.blkg-footer-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blkg-footer-service-list li {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
  letter-spacing: 0.02em;
}
.blkg-footer-service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── CTA Column ── */
.blkg-footer-cta-text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.blkg-btn-footer-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  background: var(--gold);
  color: var(--obsidian);
  text-decoration: none;
  transition: background 0.35s var(--ease-luxury), transform 0.2s;
  position: relative;
  overflow: hidden;
}
.blkg-btn-footer-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.blkg-btn-footer-cta:hover::before { left: 100%; }
.blkg-btn-footer-cta:hover {
  background: var(--gold-light);
  color: var(--obsidian);
  transform: translateY(-1px);
}

/* Widget styles in footer */
.footer-widget {}
.footer-widget-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule-dark);
}
.footer-widget p {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--light-gray);
  margin-bottom: 1rem;
}
.footer-widget a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-widget a:hover { color: var(--gold-light); }
.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-widget ul li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-widget ul li a {
  display: block;
  font-size: 0.83rem;
  font-weight: 300;
  padding: 0.6rem 0;
  color: var(--light-gray);
}
.footer-widget ul li a:hover { color: var(--gold-light); }

/* ── Bottom Bar ── */
.blkg-footer-bottom {
  border-top: 1px solid var(--rule-dark);
  padding: 1.5rem 0;
}

.blkg-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.blkg-footer-copyright {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}

.blkg-footer-legal-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blkg-footer-legal-list li {
  position: relative;
}
.blkg-footer-legal-list li + li::before {
  content: '·';
  position: absolute;
  left: -0.9rem;
  color: var(--rule-dark);
}
.blkg-footer-legal-list a {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.3s;
}
.blkg-footer-legal-list a:hover { color: var(--gold); }

.blkg-footer-credit {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
}
.blkg-footer-credit a {
  color: var(--gold);
  text-decoration: none;
  opacity: 0.7;
}
.blkg-footer-credit a:hover { opacity: 1; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .blkg-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .blkg-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .blkg-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .blkg-footer-brand { grid-column: auto; }
  .blkg-footer-body  { padding: 3.5rem 0 3rem; }
  .blkg-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .blkg-footer-credit { display: none; }
}
