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

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #e6d9c0;
    color: #292420;
    padding: 8px 16px;
    font-size: 14px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus { top: 8px; }

:focus-visible {
    outline: 2px solid #52672d;
    outline-offset: 2px;
}

body {
    font-family: Arial, sans-serif;
    background: #e6d9c0;
    color: #292420;
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    border-top: 3px solid #a5b5a9;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("/assets/images/bg.jpg") no-repeat center top;
    background-size: cover;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(210, 196, 176, 0.88) 0%, rgba(196, 184, 160, 0.85) 30%, rgba(184, 168, 144, 0.85) 60%, rgba(165, 181, 169, 0.88) 100%);
    z-index: -1;
}

.content {
    max-width: 540px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    flex: 1;
}

p {
    margin-bottom: 1.8rem;
    font-size: 1rem;
    color: #4a4440;
}

.lead {
    font-size: 1.15rem;
    color: #292420;
    line-height: 2;
    margin-bottom: 4rem;
}

.product {
    border-left: 3px solid #a5b5a9;
    padding: 0.25rem 0 0.25rem 2rem;
    margin: 0 0 3rem;
}

.product p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.product a {
    color: #735b4e;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.product a:hover { color: #52672d; }

.location {
    text-align: center;
    padding: 3rem 0 1rem;
    font-size: 0.75rem;
    color: #665e58;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer {
    position: relative;
    text-align: center;
    padding: 10px 20px;
    background: #e6d9c0;
    font-size: 12px;
}

.footer .footer-link-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.footer .footer-link-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.footer a {
    color: #52672d;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
    padding: 14px 8px;
    margin: -14px -8px;
}

.footer a:hover { opacity: 1; }

.footer .email a {
    opacity: 1;
    font-size: 16px;
}

.email-part {
    display: none;
}

@media (max-width: 480px) {
    .content {
        padding: 3.5rem 1.25rem 2.5rem;
    }
    .product {
        padding: 0.25rem 0 0.25rem 1.25rem;
    }
    .footer {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 12px 20px;
    }
    .footer .footer-link-left,
    .footer .footer-link-right {
        position: static;
    }
}
