
* { box-sizing: border-box; }

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #faf7ef;
    margin: 0;
    padding: 0;
    color: #2b2113;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5vw;
    background: linear-gradient(90deg, #d9c89e, #c3a86b);
    border-bottom: 3px solid #a07b32;
}

.site-header .branding h1 {
    margin: 0;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header .branding p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
}

nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: #2b2113;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.5);
}

main {
    padding: 2rem 5vw 4rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-text h2 { font-size: 2rem; margin-top: 0; }
.hero-text p { line-height: 1.6; }

.hero-images {
    display: block;
}

.hero-images img {
    width: 100%;
    border-radius: 14px;
    border: 3px solid #b5985d;
    background: #f7f1dd;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.intro-grid article {
    background: #fffdf8;
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid #e0d0a8;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.intro-grid h3 { margin-top: 0; }

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background: #b5985d;
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.button:hover { background: #a18145; }

.chicken-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.chicken-card {
    background: #fffdf8;
    border-radius: 10px;
    border: 1px solid #e0d0a8;
    padding: 1rem 1.25rem;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.chicken-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}

.chicken-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chicken-card .price {
    font-weight: 700;
    margin: 0.2rem 0 0.5rem;
}

.chicken-card button.toggle {
    border: none;
    background: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    color: #7b5a21;
    padding: 0;
}

.chicken-card button.toggle:hover {
    text-decoration: underline;
}

.chicken-details {
    margin-top: 0.5rem;
    display: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chicken-details.open {
    display: block;
}

.chicken-details p {
    margin-top: 0;
}

.chicken-details .hint {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.reviews-section {
    margin-top: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.review-card {
    background: #fffdf8;
    border-radius: 10px;
    border: 1px solid #e0d0a8;
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
}

.review-stars {
    color: #d8a100;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.review-name {
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: flex-start;
}

.about-text .about-copy {
    grid-column: 1 / 2;
}

.about-text figure {
    grid-column: 2 / 3;
    margin: 0;
    text-align: center;
}

.about-text figure img {
    max-width: 100%;
    border-radius: 10px;
    border: 3px solid #b3b3b3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.about-text figure figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-style: italic;
    color: #555;
}

.order-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.order-form-wrapper p { line-height: 1.7; }

.order-box {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border: 2px dashed #b5985d;
    background: #fffaf0;
}

.order-address {
    margin-top: 1rem;
    font-family: "Courier New", monospace;
    white-space: pre-line;
}

form label {
    display: block;
    margin-top: 0.75rem;
    font-weight: 600;
}

form input, form select, form textarea {
    width: 100%;
    padding: 0.4rem 0.5rem;
    margin-top: 0.35rem;
    border-radius: 6px;
    border: 1px solid #c9b894;
    font: inherit;
    background: #fdfaf4;
}

form textarea {
    min-height: 90px;
    resize: vertical;
}

.print-hint {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
}

footer {
    margin-top: 3rem;
    padding: 1rem 5vw;
    background: #eee2c6;
    border-top: 2px solid #d0bf95;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .about-text {
        grid-template-columns: 1fr;
    }
    .about-text .about-copy, .about-text figure {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
    }

    nav a {
        margin-left: 0;
        margin-right: 0.75rem;
        margin-bottom: 0.25rem;
    }
}

@media print {
    header, footer, .print-hint, nav {
        display: none;
    }
    main {
        padding: 0;
    }
    body {
        background: #ffffff;
    }
    .order-box {
        border: 1px solid #000;
        background: #ffffff;
    }
}
