/* =========================================================
   FOOTER — Figma "Home" frame, y=8082–8395
   bg=#121225, border-top 1px #F1DFDB
   ========================================================= */

.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(241, 223, 219, 0.25);
}

/* =========================================================
   FOOTER MAIN BODY
   ========================================================= */
.footer-main {
  padding: 72px 79px 60px;
  max-width: var(--container-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

/* =========================================================
   BRAND COLUMN
   ========================================================= */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Logo: Roboto Mono 16px w700 #F1DFDB */
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--t-fast);
}
.footer-logo:hover { opacity: 0.7; }

.footer-logo__text {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* Tagline */
.footer-brand__tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 300;
  line-height: 19px;
  color: rgba(241, 223, 219, 0.55);
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(241, 223, 219, 0.2);
  color: var(--text);
  opacity: 0.6;
  transition: opacity var(--t-fast), border-color var(--t-fast);
  flex-shrink: 0;
}
.footer-social__link:hover {
  opacity: 1;
  border-color: rgba(241, 223, 219, 0.5);
}
.footer-social__link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* =========================================================
   NAV COLUMNS — 4 columns
   Column titles: Roboto Mono 16px w700 UPPERCASE #F1DFDB
   Links: Roboto Mono 12px w400 lh=24px #F1DFDB opacity 0.65
   ========================================================= */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Column title */
.footer-nav__title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(241, 223, 219, 0.15);
}

.footer-nav__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.footer-nav__link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 300;
  line-height: 22px;
  color: rgba(241, 223, 219, 0.6);
  text-decoration: none;
  padding: 2px 0;
  display: block;
  transition: color var(--t-fast);
}
.footer-nav__link:hover {
  color: var(--text);
}

/* =========================================================
   FOOTER BOTTOM BAR
   ========================================================= */
.footer-bottom {
  border-top: 1px solid rgba(241, 223, 219, 0.12);
  padding: 20px 79px;
  max-width: var(--container-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* Copyright */
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(241, 223, 219, 0.4);
}

/* Legal links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-legal__link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(241, 223, 219, 0.4);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-legal__link:hover {
  color: rgba(241, 223, 219, 0.85);
}
