      footer {
        background: #0055FF;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 24px 72px;
        gap: 48px;
        text-align: center;
      }

      .footer-title {
        font-family: ‘Libre Baskerville’, ‘Times New Roman’, serif;
        font-size: clamp(56px, 9vw, 100px);
        font-weight: 400;
        font-style: italic;
        color: rgba(255, 255, 255, 0.70);
        letter-spacing: -0.03em;
        line-height: 1;
        margin: 0;
      }

      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      .footer-p-canvas-wrap {
        position: relative;
        width: 100%;
        max-width: 800px;
        height: clamp(80px, 12vw, 160px);
        overflow: visible;
        margin: 0 auto;
      }

      #footerCanvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
      }

      .footer-socials {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .footer-social-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 200px;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.75);
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.35);
        transition: border-color 0.2s, color 0.2s, background 0.2s;
      }

      .footer-social-btn:hover {
        border-color: rgba(255, 255, 255, 0.75);
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
      }

      .footer-social-btn svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        flex-shrink: 0;
      }
