.hero-section {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    background-color: var(--color-light-aqua);
}

.hero-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25));
    text-align: center;
}

.hero-logo {
    width: clamp(180px, 28vw, 300px);
    margin-bottom: 20px;
}

.hero-text h1 {
    margin: 0 0 20px;
    color: var(--color-white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.65);
    line-height: 1.2;
}

.hero-logo {
    width: clamp(180px, 28vw, 300px);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.hero-logo:hover,
.hero-logo:focus {
    transform: scale(1.2);
}

.left-text,
.right-text {
    display: block;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.75rem);
    font-weight: bold;
}

.pouring-soon-button {
    display: inline-block;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    background-color: var(--color-highlight);
    color: var(--color-white);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pouring-soon-button:hover,
.pouring-soon-button:focus {
    background-color: var(--color-accent);
    transform: translateY(-1px);
}

.content-section {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    background-color: var(--color-cream);
}

.content-box {
    flex: 1 1 280px;
    max-width: 340px;
    background-color: var(--color-light-aqua);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.content-box img {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto 15px;
    border-radius: var(--radius-sm);
}

.content-box h2 {
    margin: 0 0 10px;
    color: var(--color-deep-green);
    font-size: 1.35rem;
}

.content-box p {
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px 30px;
    background-color: var(--color-cream);
}

@media (max-width: 768px) {
    .hero-section,
    .hero-image {
        min-height: 60vh;
        height: 60vh;
    }

    .overlay {
        padding: 20px 15px;
    }

    .hero-logo {
        margin-bottom: 16px;
    }

    .content-section {
        padding: 30px 15px;
    }

    .content-box {
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 10px 15px 25px;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .hero-image {
        min-height: 54vh;
        height: 54vh;
    }

    .left-text,
    .right-text {
        font-size: 1.35rem;
    }

    .pouring-soon-button {
        padding: 10px 22px;
    }
}