
  /* =============================================
     FOOTER — Section 10
     CIALDINI: Unity — "join our community" language
     CIALDINI: Social Proof — subscriber count
  ============================================= */
  footer {
    background: var(--text-main);
    padding: 4rem 8vw 2rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }

  .footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 1rem;
  }

  .footer-brand-name span { font-style: italic; color: var(--sage-light); }

  .footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--sage-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 280px;
  }

  .footer-heading {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 1.2rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-links a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(247,243,236,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--ivory); }

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

  .footer-copy {
    font-size: 0.78rem;
    color: #A7ADA4;
  }

  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }

  .footer-legal a {
    font-size: 0.78rem;
    color: #A7ADA4;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--sage-light); }
