/* ── Layout ── */

header {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 99999;
    background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
    border-bottom: 3px solid #C14A09;
    box-shadow: 0 4px 24px rgba(193,74,9,0.25);
}

header a {
    text-decoration: none;
    color: inherit;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: clamp(6px, 1vh, 16px) clamp(10px, 2vw, 32px);
    gap: 12px;
    flex-wrap: nowrap;
    min-height: 0;
}

main {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

footer {
    flex-shrink: 0;
    width: 100%;
    position: relative;
    z-index: 99999;
    background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    border-top: 3px solid #C14A09;
    box-shadow: 0 -4px 24px rgba(193,74,9,0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: clamp(5px, 0.8vh, 12px) clamp(10px, 2vw, 32px);
}
