footer{ background:#fff; padding:56px 24px 0; }
  .footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr 1.4fr;
    gap:24px;
    padding-bottom:40px;
  }
  .footer-brand .logo{ margin-bottom:14px; }
  .footer-brand p{
    font-size:.85rem;
    color:var(--gray-500);
    line-height:1.6;
    max-width:230px;
    margin:0 0 18px;
  }
  .social-row{ display:flex; gap:12px; }
  .social-row a{
    width:34px;height:34px;
    border-radius:50%;
    background:var(--gray-100);
    display:flex;align-items:center;justify-content:center;
    color:var(--black);
    transition:background .15s ease, color .15s ease;
  }
  .social-row a:hover{ background:var(--lime); color:#0a0a0a; }
  .social-row svg{ width:16px;height:16px; }

  .footer-col h4{
    font-size:.92rem;
    font-weight:700;
    margin:0 0 16px;
    color:var(--black);
  }
  .footer-col ul li{ margin-bottom:11px; }
  .footer-col ul a{
    font-size:.85rem;
    color:var(--gray-700);
  }
  .footer-col ul a:hover{ color:var(--lime-dark); }

  .newsletter p{
    font-size:.85rem;
    color:var(--gray-500);
    margin:0 0 16px;
    line-height:1.6;
  }
  .newsletter-form{
    display:flex;
    gap:0;
    border:1px solid var(--gray-300);
    border-radius:6px;
    overflow:hidden;
    position:relative;
  }
  .newsletter-form input{
    flex:1;
    border:none;
    padding:11px 14px;
    font-size:.82rem;
    outline:none;
    min-width:0;
  }
  .newsletter-form button{
    background:var(--lime);
    border:none;
    padding:0 18px;
    font-weight:700;
    font-size:.78rem;
    color:#0a0a0a;
    white-space:nowrap;
    transition:background .15s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    cursor:pointer;
  }
  .newsletter-form button:hover{ background:var(--lime-dark); }
  .newsletter-form button:disabled{ cursor:wait; opacity:.85; }
  .newsletter-spinner{
    display:none;
    width:14px;
    height:14px;
    flex:0 0 14px;
    animation:newsletter-spin .75s linear infinite;
  }
  .newsletter-form button.is-loading .newsletter-spinner{ display:block; }
  @keyframes newsletter-spin{ to{ transform:rotate(360deg); } }
  .newsletter-form-trap{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }
  .newsletter-status{
    margin:10px 0 0 !important;
    color:#237a3b !important;
    font-size:.82rem !important;
  }
  .newsletter-status.is-error{ color:#a12f2f !important; }
  .hashtag{
    display:inline-block;
    margin-top:16px;
    font-weight:700;
    font-size:.85rem;
    color:var(--lime-dark);
  }

  .footer-bottom{
    border-top:1px solid var(--gray-200);
    padding:20px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:.78rem;
    color:var(--gray-500);
    flex-wrap:wrap;
    gap:10px;
  }
  .footer-bottom-links{
    display:flex;
    gap:18px;
  }
  .footer-bottom-links a:hover{ color:var(--ink); }

  @media (max-width: 1200px){
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .footer-brand{ grid-column:1/-1; }
  }

  @media (max-width: 1200px){
    .footer-grid{ grid-template-columns:1fr 1fr; }
  }

  @media (max-width: 480px){
    .footer-grid{ grid-template-columns:minmax(0,1fr); }
    .footer-grid .newsletter{ min-width:0; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; }
  }