footer {
  background: #1a3820;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.2rem, 6vw, 6rem) 2rem;
  border-top: 1px solid rgba(29, 92, 37, 0.3);
}

/* Layout */
.ft-top {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
}

/* Brand */
.ft-logo-img {
  height: clamp(2.5rem, 5vw, 3.5rem);
  width: auto;
}

.ft-brand-tagline {
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.38rem, 1vw, 0.5rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(200, 232, 204, 0.4);
  margin-top: 0.5rem;
}

.ft-brand-desc {
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(210, 210, 210, 0.75);
  max-width: 320px;
}

/* Social */
.ft-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.ft-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.42rem, 1vw, 0.55rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 232, 204, 0.6);
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(82, 168, 98, 0.2);
  border-radius: 3px;
  transition: all 0.25s ease;
}

.ft-social-btn:hover {
  color: var(--cream, #f2ede4);
  border-color: rgba(82, 168, 98, 0.45);
  background: rgba(82, 168, 98, 0.08);
}

/* Columns */
.ft-col-h {
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(82, 168, 98, 0.2);
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ft-col ul a {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: rgba(210, 210, 210, 0.75);
  text-decoration: none;
  transition: color 0.25s ease;
}

.ft-col ul a:hover {
  color: rgba(200, 232, 204, 0.9);
}

/* Bottom */
.ft-bottom {
  border-top: 1px solid rgba(82, 168, 98, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-copy {
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.38rem, 1vw, 0.5rem);
  letter-spacing: 0.2em;
  color: rgba(200, 232, 204, 0.3);
}

.ft-bottom-links {
  display: flex;
  gap: 1.2rem;
}

.ft-bottom-links a {
  font-family: "Fragment Mono", monospace;
  font-size: clamp(0.38rem, 1vw, 0.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200, 232, 204, 0.3);
  text-decoration: none;
}

.ft-bottom-links a:hover {
  color: var(--sage);
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .ft-top {
    grid-template-columns: 1fr 1fr;
  }

  .ft-top > div:first-child {
    grid-column: 1 / -1;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(82, 168, 98, 0.12);
  }

  .ft-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .ft-top {
    grid-template-columns: 1fr;
  }

  .ft-social {
    flex-direction: column;
    align-items: flex-start;
  }

  .ft-social-btn {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Small phones */
@media (max-width: 400px) {
  footer {
    padding: 1.5rem 1rem;
  }

  .ft-bottom-links {
    flex-direction: column;
    gap: 0.6rem;
  }
}