/* ---------- Reset ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- Page ---------- */

body {
   background-color: #F8F6F0;
    background-image: url("images/rice-paper-background.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ---------- Main logo area ---------- */

.hero {
    width: min(92vw, 1050px);
}

/* Pagoda on the left, text block on the right */

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(30px, 5vw, 70px);
}

/* ---------- Pagoda ---------- */

.pagoda {
    width: clamp(385px, 39vw, 550px);
    height: auto;

    flex-shrink: 0;
}

/* ---------- Text block ---------- */

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: clamp(300px, 40vw, 480px);
}

/* ---------- KAMOAK ---------- */

.wordmark {
    width: 100%;
    height: auto;
     margin-top: -25px;
}

/* ---------- Wait for it! ---------- */

.tagline {
     width: clamp(180px, 20vw, 250px);
    height: auto;

    margin-top: 0px;
    margin-left: 60px;
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {

    body {
        padding: 25px 18px;
    }

    .hero {
        width: 100%;
    }

    .brand-row {
        flex-direction: column;
        gap: 18px;
    }

    .pagoda {
        width: clamp(190px, 58vw, 260px);
    }

    .brand-text {
        width: min(88vw, 420px);
    }

    .wordmark {
        width: 100%;
    }

    .tagline {
        width: clamp(140px, 42vw, 190px);

        margin-top: 12px;
        margin-left: 40px;
    }
}