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

:root {
    --color-text: #2d3748;
}

html, body {
    height: 100%;
    font-family: Verdana, Geneva, sans-serif;
    color: var(--color-text);
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.page {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hero Section */
.hero {
    padding: 3rem 2rem;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 0.25em;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: bold;
    margin-bottom: 1.5em;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75em 1.5em;
    font-size: clamp(0.875rem, 2vw, 1rem);
    list-style: none;
}

.separator {
    display: none;
}

@media (min-width: 600px) {
    .separator {
        display: block;
        width: 4px;
        height: 4px;
        background: var(--color-text);
        border-radius: 50%;
        opacity: 0.4;
    }
}

/* Footer */
.footer {
    padding: 1.25rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
}

.status {
    font-size: 0.875rem;
    margin-bottom: 0.5em;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em 1.25em;
    font-size: 0.875rem;
    font-style: normal;
}

.contact a {
    color: var(--color-text);
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.dot {
    width: 4px;
    height: 4px;
    background: var(--color-text);
    border-radius: 50%;
    opacity: 0.4;
}

/* Mobile */
@media (max-width: 480px) {
    .services {
        flex-direction: column;
        gap: 0.25em;
    }

    .separator {
        display: none;
    }

    .contact {
        flex-direction: column;
        gap: 0.25em;
    }

    .dot {
        display: none;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 1.5rem 2rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .tagline {
        margin-bottom: 1em;
    }

    .footer {
        padding: 1rem 2rem;
    }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #fff;
    color: var(--color-text);
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Keyboard Focus Styles */
a:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .contact a {
        text-decoration: underline;
    }
}
