/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    background-color: #e6e6dd;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

body {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.6;
}

/* Navigation */
.nav {
    background-color: #000000;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
}

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    color: #c85f4b;
    text-decoration: none;
    background-color: #c85f4b;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c85f4b;
}

/* Hero Section */
.hero {
    background-color: #000000;
    background-image: url('https://images.unsplash.com/photo-1559056199-641a0ac8b3f7?w=1440&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    background-color: #e6e6dd;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
    color: #000000;
}

.hero-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.hero-image {
    background-color: #e6e6dd;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button.primary {
    background-color: #000000;
    color: #e6e6dd;
    border-color: #000000;
}

.cta-button.primary:hover {
    background-color: #333333;
    border-color: #333333;
}

.cta-button.secondary {
    background-color: #e6e6dd;
    color: #000000;
    border-color: #000000;
}

.cta-button.secondary:hover {
    background-color: #ffffff;
}

/* Roasts Section */
.roasts-section {
    background-color: #e6e6dd;
    padding: 60px 40px;
}

.roasts-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.roasts-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.section-headline {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000000;
}

.roasts-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.roasts-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-content: flex-start;
}

.roast-card {
    border: 2px solid #000000;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background-color: #e6e6dd;
    transition: transform 0.3s ease;
}

.roast-card:hover {
    transform: scale(1.05);
}

.roast-card.kiln {
    background-color: #c85f4b;
    color: #ffffff;
    grid-column: 2;
    grid-row: 1;
}

.roast-card.kiln .roast-name {
    color: #ffffff;
}

.roast-card.kiln .roast-description {
    color: rgba(255, 255, 255, 0.9);
}

.roast-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.roast-card .roast-description {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #e6e6dd;
    padding: 60px 40px;
    border-top: 3px solid #000000;
}

.testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    background-color: #000000;
    color: #ffffff;
}

.testimonials-left .section-headline {
    color: #ffffff;
    margin-bottom: 40px;
}

.testimonials-intro {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonials-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    border: 2px solid #000000;
    padding: 30px;
    background-color: #ffffff;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #666666;
}

/* Contact Section */
.contact-section {
    background-color: #e6e6dd;
    padding: 60px 40px;
    border-top: 3px solid #000000;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

/* Contact Form */
.contact-form {
    background-color: #000000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background-color: #000000;
    border: 1px solid #666666;
    color: #ffffff;
    padding: 12px;
    font-size: 14px;
    font-family: inherit;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 14px;
    color: #999999;
    margin-top: 10px;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.footer-brand {
    font-size: 16px;
    font-weight: 700;
}

.footer-location {
    font-size: 14px;
    color: #999999;
}

.footer-links {
    font-size: 14px;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .roasts-container {
        grid-template-columns: 1fr;
    }

    .roasts-cards {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-text {
        padding: 20px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .section-headline {
        font-size: 32px;
    }

    .roasts-section {
        padding: 40px 20px;
    }

    .roasts-container {
        gap: 40px;
    }

    .roasts-cards {
        grid-template-columns: 1fr;
    }

    .roast-card {
        width: 100%;
        height: auto;
        min-height: 180px;
    }

    .roast-card.kiln {
        grid-column: 1;
    }

    .testimonials-section {
        padding: 40px 20px;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}