/* ==========================================================================
   Footer — Corporate Editorial
   ========================================================================== */

.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-body);
}

/* editorial: replace the striped bar with a single hairline + small gold rule */
.footer__shapes {
  height: 1px;
  background: rgba(255,255,255,0.12);
  position: relative;
}
.footer__shapes span { display: none; }
.footer__shapes::after {
  content: "";
  position: absolute;
  left: 40px;
  top: -1px;
  width: 48px;
  height: 3px;
  background: var(--gold);
}

.footer__main {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 72px 40px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer__col h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  padding-bottom: 0;
  border-bottom: none;
  display: block;
  color: rgba(255,255,255,0.5);
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li {
  margin-bottom: 12px;
}

.footer__col a {
  color: var(--white);
  opacity: 0.85;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.footer__col a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__brand img {
  height: 28px;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 34ch;
  font-weight: 400;
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.footer__social a:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-deep);
}

.footer__social svg { width: 14px; height: 14px; fill: currentColor; }

/* offices grid */
.offices {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.office h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  color: var(--white);
}

.office p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.6;
  font-weight: 400;
}

.office a { color: var(--white); text-decoration: none; }
.office a:hover { opacity: 1; text-decoration: underline; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer__bottom-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  opacity: 0.55;
  font-weight: 400;
}

.footer__legal {
  display: flex;
  gap: 22px;
}

.footer__legal a { color: var(--white); text-decoration: none; }
.footer__legal a:hover { opacity: 1; text-decoration: underline; }

.footer__support {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.footer__support .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

@media (max-width: 960px) {
  .footer__main { grid-template-columns: 1fr 1fr; padding: 56px 24px 32px; gap: 40px; }
  .offices { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .footer__main { grid-template-columns: 1fr; padding: 48px 20px 28px; }
  .offices { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
}
