/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.5;
}

/* ── Header ─────────────────────────────────────────────── */
.header {
    background-color: #cc1b22;
    padding: 18px 48px;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo {
    height: 60px;
    width: auto;
}

.header-address {
    color: #fff;
    font-size: 15px;
    white-space: nowrap;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
    display: flex;
    align-items: stretch;
    background-color: #fff;
    overflow: hidden;
}

/* Left panel — dot pattern background, red Hotsy Ontario logo */
.hero-left {
    flex: 0 0 36%;
    background: url(images/right_left_bkg.png) no-repeat left center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 32px;
}

.hero-hotsy-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Orange chevron divider — scales to full hero height */
.hero-chevron {
    flex: 0 0 auto;
    align-self: stretch;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 1;
    margin: 0 -4px; /* slight overlap on both sides */
    background: url(images/chevron.png) no-repeat 0 0;
    background-size: cover;
}

.chevron-img {
    display: block;
    height: 100%;
    width: auto;
}

/* Right panel — IS NOW + Easy-Kleen logo, diagonal lines in corner */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 80px;
    overflow: hidden;
}

.hero-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 60%;
    background-image: url(images/bottom_right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
}

.hero-right-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 620px;
    width: 100%;
}

.is-now-img {
    max-width: 320px;
    min-width: 200px;
    width: 75%;
    height: auto;
}

.easykleen-img {
    max-width: 580px;
    min-width: 350px;
    width: 100%;
    height: auto;
}

/* ── Slogan Banner ──────────────────────────────────────── */
.slogan {
    display: block;
    line-height: 0;
}

.slogan-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    background-color: #e5e5e5;
    padding: 48px 48px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.footer-col h3 {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
    color: #222;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.footer-col .mt-section {
    margin-top: 28px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 7px;
}

.footer-col ul li a {
    color: #444;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.5;
}

.footer-col ul li a:hover {
    color: #cc1b22;
    text-decoration: underline;
}

.footer-col address {
    font-style: normal;
    font-size: 11px;
    color: #444;
    line-height: 1.8;
}

/* ── Responsive: Tablet ─────────────────────────────────── */
@media (max-width: 1100px) {
    .header {
        padding: 16px 28px;
    }

    .hero-left {
        flex: 0 0 40%;
        padding: 48px 24px;
    }

    .hero-hotsy-logo {
        max-width: 260px;
    }

    .hero-right {
        padding: 48px 40px;
    }

    .easykleen-img {
        max-width: 440px;
    }

    .footer {
        padding: 40px 28px;
    }

    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Responsive: Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .header-address {
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

    /* Stack hero vertically on mobile */
    .hero {
        flex-direction: column;
    }

    .hero-left {
        flex: none;
        width: 100%;
        padding: 48px 24px;
        min-height: 280px;
    }

    /* Hide chevron — doesn't make sense vertically */
    .hero-chevron {
        display: none;
    }

    .hero-right {
        flex: none;
        width: 100%;
        padding: 48px 24px;
        min-height: 300px;
    }

    .hero-right::after {
        width: 50%;
        height: 40%;
    }

    .is-now-img {
        max-width: 260px;
        width: 70%;
    }

    .easykleen-img {
        max-width: 360px;
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ── Responsive: Small Mobile ───────────────────────────── */
@media (max-width: 480px) {
    .header {
        padding: 14px 16px;
    }

    .header-logo {
        height: 48px;
    }

    .hero-left {
        padding: 36px 20px;
        min-height: 240px;
    }

    .hero-hotsy-logo {
        max-width: 200px;
    }

    .hero-right {
        padding: 36px 20px;
        min-height: 260px;
    }

    .is-now-img {
        max-width: 200px;
        width: 65%;
    }

    .easykleen-img {
        max-width: 100%;
    }

    .footer {
        padding: 32px 16px;
    }

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