/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy-deep);
}

.footer-main {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* 3 column grid — matches ref exactly */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* ── Brand Column ── */
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}

/* Email input */
.footer-input {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  padding: 0.9rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  font-family: var(--font-body);
  outline: none;
  margin-bottom: 0.8rem;
  transition: border-color 0.2s ease;
}

.footer-input::placeholder { color: rgba(255,255,255,0.2); }
.footer-input:focus { border-color: var(--brand-blue); }

/* Submit button */
.footer-submit {
  display: inline-block;
  background: var(--brand-red);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 2.5rem;
}
.footer-submit:hover { background: var(--red-deep); }

/* Socials */
.footer-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social svg {
  fill: #ffffff;
  display: block;
  transition: opacity 0.2s ease;
}

.footer-social:hover svg { opacity: 0.6; }

/* ── Nav Column ── */
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.8rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-nav li a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.footer-nav li:first-child a { color: var(--brand-red); }

.footer-nav li a:hover { color: #ffffff; }

/* ── Contact Column ── */
.footer-contact-item {
  margin-bottom: 1.5rem;
}

.footer-contact-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 0.3rem;
}

.footer-contact-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  line-height: 1.6;
  display: block;
  transition: color 0.2s ease;
}
.footer-contact-value:hover { color: #ffffff; }

/* ── Bottom Bar ── */
.footer-bottom {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-inner p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom-links a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom-links span {
  color: rgba(255,255,255,0.15);
  font-size: 0.7rem;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}