.site-shell {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(254, 254, 254, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    width: min(1100px, 92%);
    margin: 0 auto;
}

.site-main {
    flex: 1;
}

.site-footer {
    margin-top: auto;
    background: var(--green);
    color: var(--white);
    padding: 1rem 0;
}

.footer-inner {
    width: min(1100px, 92%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}
