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

body {
    background-color: #000;
    color: #D4CDBC;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    padding: 3rem 1.5rem 2rem;
}

.logo {
    width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
}

.logo-small {
    width: 120px;
}

h1 {
    color: #E8B84B;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    width: 100%;
    margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: #111;
    border: 1px solid #333;
    color: #D4CDBC;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1rem;
    padding: 0.65rem 0.85rem;
    border-radius: 4px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #E8B84B;
}

.contact-form button {
    background: #E8B84B;
    color: #000;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.6rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.contact-form button:hover {
    background: #d4a63d;
}

/* Recipe page */
h2 {
    color: #E8B84B;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.recipe-list {
    list-style: none;
    text-align: left;
    line-height: 1.9;
    font-size: 1.05rem;
}

.recipe-list li::before {
    content: "\2022";
    color: #E8B84B;
    margin-right: 0.5rem;
}

.recipe-directions {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Legal pages */
.legal-date {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.legal-disclaimer {
    text-align: left;
    max-width: 540px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #999;
    border-left: 3px solid #E8B84B;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.legal-text {
    text-align: left;
    max-width: 540px;
}

.legal-text h2 {
    font-size: 1.3rem;
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #E8B84B;
    text-decoration: none;
}

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

/* Footer */
footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 0.85rem;
}

.footer-left {
    color: #777;
}

.footer-right {
    display: flex;
    gap: 1.5rem;
}

footer a {
    color: #999;
    text-decoration: none;
}

footer a:hover {
    color: #E8B84B;
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
    }

    .logo-small {
        width: 80px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
