:root{
    --ink: #2e2e2e;
    --ink-soft: rgba(46,46,46,0.6);
    --line: rgba(46,46,46,0.12);
}

*{ box-sizing: border-box; }

body{
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container{
    width: 1000px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

/* ---------- header ---------- */
header{
    background: var(--ink);
}

header .container{
    display: flex;
    align-items: center;
    padding: 24px 0;
}

.company_logo{
    height: 40px;
    display: block;
}

/* ---------- intro ---------- */
.intro{
    padding: clamp(50px, 9vw, 90px) 0 clamp(40px, 7vw, 70px);
    border-bottom: 1px solid var(--line);
}

.intro h1{
    font-size: clamp(23px, 4vw, 28px);
    font-weight: 600;
    margin: 0 0 16px;
}

.intro p{
    max-width: 44em;
    line-height: 1.7;
    font-size: 15px;
    color: var(--ink-soft);
    margin: 0;
}

/* ---------- brands ---------- */
.brands-title{
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding-top: 60px;
}

.brand{
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: center;
    padding: 56px 0;
}

.brand + .brand{
    border-top: 1px solid var(--line);
}

.brand .logo{
    display: block;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.brand .category{
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.brand h2{
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 14px;
}

.brand .description{
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 15px;
    max-width: 44em;
    margin: 0 0 20px;
}

.brand .visit{
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
    padding: 10px 0; /* larger tap target */
    margin: -10px 0;
}

.brand .visit:hover{
    color: var(--ink-soft);
}

/* ---------- footer ---------- */
footer{
    background: var(--ink);
    color: rgba(255,255,255,0.6);
    padding: 48px 0;
    margin-top: 40px;
}

footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

footer .company_logo{
    height: 34px;
}

footer .legal{
    font-size: 13px;
    line-height: 1.7;
    text-align: right;
}

/* ---------- responsive ---------- */
@media only screen and (max-width: 900px) {
    .brand{
        grid-template-columns: 200px 1fr;
        gap: 40px;
    }
}

@media only screen and (max-width: 680px) {
    header .container{
        justify-content: center;
        padding: 18px 0;
    }

    .company_logo{
        height: 34px;
    }

    .brands-title{
        padding-top: 44px;
        text-align: center;
    }

    .brand{
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 44px 0;
    }

    .brand .logo{
        width: min(180px, 55vw);
        margin: 0 auto;
    }

    .brand > div{
        text-align: center;
    }

    .brand .description{
        margin-left: auto;
        margin-right: auto;
    }

    footer{
        padding: 36px 0;
        margin-top: 24px;
    }

    footer .container{
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    footer .company_logo{
        height: 30px;
    }

    footer .legal{ text-align: center; }
}
