.bottom-info {
    margin-top: auto;
    padding-top: var(--footer-gap, calc(var(--grid-step, 15px) * 1.5));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    border-top: none;
    font-size: inherit;
    color: inherit;
}

.bottom-left {
    flex: 0 0 auto;
    white-space: nowrap;
}

.bottom-right {
    flex: 1 1 320px;
    min-width: 0;
}

.copyright {
    font: 400 clamp(12px, 1.6vw, 14px)/1.3 'Inter', sans-serif;
    color: var(--ink, #000000);
}

.email-link {
    color: var(--blue, #0000FF);
    text-decoration: none;
    font: 600 clamp(12px, 1.6vw, 14px)/1.3 'Inter', sans-serif;
}

.email-link:hover { opacity: 0.8; }

.commandment,
.disclaimer {
    font-family: var(--hand, 'Bradley Hand', 'Segoe Script', cursive);
    font-synthesis-weight: none;
    font-size: clamp(17px, 2.1vw, 20px);
    font-weight: 500;
    line-height: 1.15;
    max-width: 620px;
    margin-left: auto;
    text-align: left;
    color: var(--ink-soft, #4a4a4a);
}

.swash {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.swash svg {
    position: absolute;
    left: -1.5%;
    top: 100%;
    width: 103%;
    height: 13px;
    margin-top: -4px;
    overflow: visible;
    pointer-events: none;
}

.swash-pen {
    fill: none;
    stroke: var(--mark-red-pure, #EE0000);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.swash.is-drawn .swash-pen {
    animation: swash-draw 0.52s cubic-bezier(0.33, 0.9, 0.5, 1) forwards;
}

@keyframes swash-draw { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
    .swash-pen { stroke-dashoffset: 0; animation: none; }
}

.footer-hand {
    font-family: var(--hand, 'Bradley Hand', 'Segoe Script', cursive);
    font-synthesis-weight: none;
    font-size: clamp(17px, 2.1vw, 20px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--blue-pure, #0000FF);
    max-width: 620px;
    margin-left: auto;
    margin-bottom: 4px;
    text-align: left;
    transform: rotate(-1.6deg);
    transform-origin: left bottom;
}

@media (max-width: 640px) {
    .bottom-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .bottom-right { flex: 0 0 auto; width: 100%; }
    .footer-hand,
    .commandment,
    .disclaimer { margin-left: 0; }
}
