/* ============================================================
   CONNECTOR FOOTER
   Drop the <footer> block + this <style> into footer.php.
   Swap the inline SVG logo for your real file — see LOGO note.
   ============================================================ */

:root{
  --cf-bg:      #050505;
  --cf-navy:    #101f36;
  --cf-white:   #ffffff;
  --cf-body:    #e9e9ea;
  --cf-gold:    #f5c243;
  --cf-cyan:    #4fc3f7;
  --cf-rose:    #f0707c;
  --cf-rule:    rgba(255,255,255,.30);
  --cf-font:    "Segoe UI", Inter, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

.site-footer{
  background: var(--cf-bg);
  color: var(--cf-body);
  font-family: var(--cf-font);
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
.site-footer *{ box-sizing: border-box; }

.cf-inner{
  max-width: 1360px;
  margin: 0 auto;
  padding: 26px 24px 0;
}

/* ---------- column grid ---------- */
.cf-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr .95fr .95fr;
  gap: 0;
  padding-bottom: 22px;
}
.cf-col{ padding: 0 26px; }
.cf-col + .cf-col{ border-left: 1px solid var(--cf-rule); }
.cf-col--brand{ padding-left: 0; }

/* ---------- brand column ---------- */
.cf-logo{
  display: inline-block;
  background: var(--cf-navy);
  border-radius: 4px;
  padding: 8px 14px;
  line-height: 0;
}
.cf-logo img,
.cf-logo svg{ display: block; height: 46px; width: auto; }

.cf-tagline{
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--cf-white);
  padding-bottom: 100px;
}
.cf-domain{
  margin: 30px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--cf-white);
  text-decoration: none;
}
.cf-domain:hover{ color: var(--cf-cyan); }

.cf-social{
  display: flex;
  gap: 10px;
  margin: 190px 0 0;
  padding: 0;
  list-style: none;
}
.cf-social a{
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 5px;
  background: var(--cf-navy);
  color: var(--cf-white);
  transition: background .18s ease, transform .18s ease;
}
.cf-social a:hover{ background: #1c355c; transform: translateY(-2px); }
.cf-social svg{ width: 17px; height: 17px; fill: currentColor; }

/* ---------- headings ---------- */
.cf-head{
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cf-head--gold{ color: var(--cf-gold); }
.cf-head--cyan{ color: var(--cf-cyan); }
.cf-head--stacked{ margin-top: 30px; }

/* ---------- lists ---------- */
.cf-list{ margin: 0; padding: 0; list-style: none; }
.cf-list li{ margin-bottom: 11px; }
.cf-list li:last-child{ margin-bottom: 0; }

/* labelled entries: "Name: description" */
.cf-item{ color: var(--cf-body); text-decoration: none; display: block; }
.cf-item b{ font-weight: 700; }
.cf-item .lb-gold{ color: var(--cf-gold); }
.cf-item .lb-cyan{ color: var(--cf-gold); }
.cf-item .lb-rose{ color: var(--cf-gold); }
a.cf-item:hover{ color: var(--cf-white); }
a.cf-item:hover b{ text-decoration: underline; text-underline-offset: 2px; }

/* plain bold links */
.cf-link{
  color: var(--cf-white);
  font-weight: 700;
  text-decoration: none;
}
.cf-link:hover{ color: var(--cf-cyan); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- bottom bar ---------- */
.cf-bottom{
  border-top: 1px solid var(--cf-rule);
  padding: 16px 24px 20px;
  text-align: center;
  font-size: 13px;
  color: #d6d6d8;
}

/* ---------- focus + motion ---------- */
.site-footer a:focus-visible{
  outline: 2px solid var(--cf-cyan);
  outline-offset: 3px;
  border-radius: 2px;
}
@media (prefers-reduced-motion: reduce){
  .site-footer a{ transition: none !important; }
  .cf-social a:hover{ transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px){
  .cf-grid{ grid-template-columns: 1fr 1fr 1fr; row-gap: 34px; }
  .cf-col{ padding-left: 22px; padding-right: 22px; }
  .cf-col:nth-child(3n+1){ border-left: 0; padding-left: 0; }
}
@media (max-width: 720px){
  .cf-grid{ grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .cf-col{ padding: 0; border-left: 0 !important; }
  .cf-col--brand{ grid-column: 1 / -1; }
}
@media (max-width: 480px){
  .cf-grid{ grid-template-columns: 1fr; }
  .cf-inner{ padding: 22px 18px 0; }
}