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

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

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

:focus-visible {
    outline: 2px solid #004D4D;
    outline-offset: 2px;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #F4E4C1;
    color: #3C3C3C;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 2rem 1.5rem;
    max-width: 640px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #004D4D;
}

.logo-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.logo-icon svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.content {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    flex: 1;
}

h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #004D4D;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #004D4D;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; font-size: 0.95rem; }
ul { margin-bottom: 1rem; padding-left: 1.5rem; font-size: 0.95rem; }
li { margin-bottom: 0.3rem; }

.subtitle {
    color: #6a6661;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.byline {
    color: #6a6661;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    margin-left: 32px;
}

.contact-block {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #d2c4b0;
    color: #6a6661;
    font-size: 0.85rem;
    text-align: center;
}

.sample {
    background: #FAF6F0;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 1rem 0;
    border-left: 3px solid #a15017;
}

a { color: #a15017; text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: #884313; }

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

.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 .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 .email-link { font-size: 16px; opacity: 1; }
.footer .email-part { display: none; }

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