/*
  Redesigned site footer (Nov '24 layout, adapted to the LIVE site's type system).
  Self-contained + cache-busted (loaded after main.css in layouts/default.htm) so it
  overrides the legacy .footer rules without a SCSS/main.css rebuild.
  Type: Montserrat (inherited from main.css) to match the current live site.
  Tokens: charcoal #303030, brand orange #E1502A, yellow #FEE141, white.
  Scoped under .site-footer so the old .footer styles never apply.
*/
.site-footer{background:#303030;color:#fff;padding:72px 0 40px;font-family:'Montserrat',sans-serif}
.site-footer *{box-sizing:border-box}
.site-footer__inner{max-width:1440px;margin:0 auto;padding:0 60px;display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr 1.3fr;gap:40px}

/* Brand column */
.site-footer__brand{display:flex;flex-direction:column}
.site-footer__logo{display:inline-block}
.site-footer__logo img{height:88px;width:88px;display:block;border-radius:50%}
.site-footer__tagline{margin:28px 0 0;max-width:320px;font-size:16px;line-height:1.55;color:#fff}
.site-footer__socials{margin-top:28px;display:flex;gap:28px}
.site-footer__socials a{color:#fff;font-weight:700;font-size:15px;text-decoration:none}
.site-footer__socials a:hover{color:#7ed492}
.site-footer__legal{margin-top:auto;padding-top:48px;display:flex;gap:28px}
.site-footer__legal a{color:#fff;font-size:15px;text-decoration:none;opacity:.85}
.site-footer__legal a:hover{opacity:1;color:#7ed492}

/* Link columns */
.site-footer__col-title{margin:0 0 22px;font-size:16px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:#fff}
.site-footer__list{list-style:none;margin:0;padding:0}
.site-footer__list li{margin:0 0 14px}
.site-footer__list a{color:#fff;font-size:15px;letter-spacing:.5px;text-transform:uppercase;text-decoration:none;transition:color .15s ease}
.site-footer__list a:hover{color:#7ed492}

/* Contact column */
.site-footer__contact-block{margin:0 0 22px;font-size:15px;line-height:1.7}
.site-footer__contact-block p{margin:0}
.site-footer__contact-block .lbl{font-weight:700;margin-right:6px}
.site-footer__contact a{color:#fff;text-decoration:none}
.site-footer__contact a:hover{color:#7ed492}

/* Subscribe pill (sits above the contact column on wide screens) */
.site-footer__subscribe{grid-column:5;justify-self:end;margin-bottom:4px}
.site-footer__subscribe-btn{display:inline-block;border:1px solid #fff;background:transparent;color:#fff;
  font-size:13px;font-weight:700;letter-spacing:1.8px;text-transform:uppercase;padding:14px 30px;cursor:pointer;text-decoration:none;transition:.15s ease}
.site-footer__subscribe-btn:hover{background:#fff;color:#303030}

/* Partner badges row */
.site-footer__partners{max-width:1440px;margin:56px auto 0;padding:28px 60px 0;border-top:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:space-between;gap:28px}
.site-footer__partners-badges{display:flex;align-items:center;gap:28px}
.site-footer__partners-badges img{height:34px;width:auto;opacity:.9}
.site-footer__terms{color:#fff;font-size:15px;text-decoration:none;opacity:.85}
.site-footer__terms:hover{opacity:1;color:#7ed492}

/* Newsletter overlay — the shared SubscribeForm, hidden until the footer Newsletter link opens it (there was no trigger JS before). */
.subscribe-form{position:fixed;inset:0;z-index:10000;display:flex;align-items:center;justify-content:center;background:rgba(20,20,20,.96);padding:24px;opacity:1;min-width:0;transform:none !important;transition:none}
.subscribe-form.hide{display:none}
.subscribe-form__form{max-width:720px;width:100%;margin:0 auto}
body.subscribe-open{overflow:hidden}

@media (max-width:1024px){
  .site-footer__inner{grid-template-columns:1fr 1fr;gap:40px 32px}
  .site-footer__brand{grid-column:1 / -1}
  .site-footer__subscribe{grid-column:auto;justify-self:start}
  .site-footer__legal{padding-top:32px}
}
@media (max-width:600px){
  .site-footer{padding:56px 0 32px}
  .site-footer__inner{grid-template-columns:1fr;gap:36px;padding:0 28px}
  .site-footer__partners{flex-wrap:wrap;padding:24px 28px 0}
}
