
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--ivory);
    /* Fallback for browsers that don't support dvh */
    min-height: 100vh;
    /* Dynamic viewport height - accounts for Safari URL bar */
    min-height: 100dvh;
    overflow-x: hidden;
}

/* Site Footer */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(0.15rem, 0.3vh + 0.1rem, 0.5rem) clamp(0.5rem, 0.5vw + 0.3rem, 1rem);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
}

.site-footer a {
    color: var(--accent-gold, #d4af37);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: clamp(0.6rem, 0.3vw + 0.45rem, 0.85rem);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.site-footer a:hover {
    opacity: 1;
    text-decoration: underline;
}
