/* ============================================================
   FooterCSS.css
   Styles for the site footer: layout, logo, brand blurb,
   contact links, and ring mark.
   ============================================================ */

/* ── FOOTER LAYOUT — padding 48px (8×6) ── */
footer {
  background: #1a1f2e;
  color: rgba(255, 255, 255, 0.45);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;                /* 8×4 */
  font-size: 12px;
  line-height: 1.8;
}

/* ── FOOTER LOGO ── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;                 /* 8×1 */
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;       /* 8×1 */
}

/* Footer ring mark — 24×24 (8×3) */
.footer-logo-ring {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0),
              0 0 0 3.5px rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  background: transparent;
}

/* ── BRAND BLURB ── */
.footer-brand p {
  font-size: 12px;
  max-width: 240px;
  margin-left: auto;
}

/* ── RIGHT COL — contact + copyright ── */
.footer-right { text-align: right; }

.footer-right a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.footer-right a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  footer          { flex-direction: column; padding: 40px 24px; }
  .footer-right   { text-align: left; }
}