.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-kitchen {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero-logo-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-logo-center img {
    width: 420px;
    max-width: 60vw;
    filter: brightness(0) invert(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 48px;
}

.hero h1 { display: none; }

.hero-sub {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 0;
}

.btn-outline-white { display: none; }


/* ════════════════════════════════
   TABLET — 1024px
   ════════════════════════════════ */

@media (max-width: 1024px) {

    .hero-logo-center img {
        width: 340px;
        max-width: 55vw;
    }

    .hero-content {
        padding: 0 40px 44px;
    }

    .hero-sub { font-size: 17px; }
}


/* ════════════════════════════════
   LARGE PHONES — 768px
   ════════════════════════════════ */

@media (max-width: 768px) {

    .hero-logo-center img {
        width: 260px;
        max-width: 68vw;
    }

    .hero-content {
        padding: 0 28px 36px;
    }

    .hero-sub { font-size: 15px; }

    .hero-desc { font-size: 12px; }
}


/* ════════════════════════════════
   IPHONES — 430px
   ════════════════════════════════ */

@media (max-width: 430px) {

    .hero-logo-center img {
        width: 200px;
        max-width: 75vw;
    }

    .hero-content {
        padding: 0 20px 28px;
    }

    .hero-sub { font-size: 14px; }

    .hero-desc { font-size: 12px; }
}
