:root {
    --background: #0a0a0a;
    --text: #eeeeea;
    --muted: #8c8c87;
    --line: #292925;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 17px;
    line-height: 1.5;
}


/* LOGOTYP */

.header {
    position: relative;

    min-height: 25vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8vw;
}

.logo {
    display: block;
    width: min(260px, 48vw);
}

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

.email {
    position: absolute;
    top: 32px;
    right: max(6vw, calc((100vw - 1300px) / 2));

    color: var(--text);

    font-size: 14px;
    letter-spacing: -0.01em;

    text-decoration: none;

    transition: color 0.2s ease;
}

.email:hover {
    color: var(--muted);
}
/* HEADERNS RUBRIKER */

.header-services {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: min(1300px, 92vw);

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
}

.header-service {
    padding: 45px 42px 30px;

    border-right: 1px solid var(--line);
}

.header-service:first-child {
    padding-left: 0;
}

.header-service:last-child {
    padding-right: 0;
    border-right: none;
}

.header-service h2 {
    margin: 0;

    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 400;
    line-height: 0.95;

    letter-spacing: -0.045em;
    text-transform: lowercase;
}


/* FAST HEADER PÅ DESKTOP */

@media (min-width: 701px) {

    .header {
        position: sticky;
        top: 0;
        z-index: 10;

        min-height: 25vh;

        background: var(--background);
    }

    .logo {
        transform: translateY(-15px);
    }

}

.service h2 {
    display: none;
}

@media (max-width: 700px) {
    .service h2 {
        display: block;
    }
}
/* MOBIL */

@media (max-width: 700px) {

    .header-services {
        display: none;
    }

}

.studio-image {
    width: 100%;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.studio-image img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* VERKSAMHETER */

.services {
    width: min(1300px, 92vw);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.service {
    min-height: 280px;
    padding: 45px 42px 50px;

    border-right: 1px solid var(--line);
}

.service:first-child {
    padding-left: 0;
}

.service:last-child {
    padding-right: 0;
    border-right: none;
}



.service p {
    max-width: 260px;

    margin: 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.7;
}

.activities {
    white-space: nowrap;
}

/* SOUNDCLOUD */

.soundcloud {
    width: min(1300px, 92vw);
    margin: 0 auto;

    padding: 150px 0 170px;
}

.soundcloud h2 {
    margin: 0 0 35px;

    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;

    letter-spacing: -0.04em;
}

.soundcloud-placeholder {
    width: 100%;
    min-height: 166px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--line);

    color: var(--muted);

    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* KONTAKT */

footer {
    width: min(1100px, 88vw);
    margin: 0 auto;

    padding: 0 0 110px;

    text-align: center;
}

footer a {
    color: var(--text);

    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 400;

    letter-spacing: -0.03em;

    text-decoration: none;

    transition: color 0.2s ease;
}

.business-info {
    margin: 80px auto 35px;

    text-align: center;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.business-info p {
    margin: 0;
}

/* MOBIL */

@media (max-width: 700px) {

    .header {
        min-height: 40vh;
        padding: 12vw;
    }

    .logo {
        width: 180px;
    }

    .email {
        top: 24px;
        right: 8vw;
        font-size: 13px;
    }
    
    .studio-image img {
        height: 240px;
    }
    
    .activities {
    white-space: normal;
    }
    
    .services {
        width: 84vw;

        display: block;
    }

    .service,
    .service:first-child,
    .service:last-child {
        min-height: 0;

        padding: 45px 0;

        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .service:last-child {
        border-bottom: none;
    }

    .service h2 {
        margin-bottom: 18px;

        font-size: 3rem;
    }

    .service p {
        max-width: 340px;
    }

    .soundcloud {
        width: 84vw;

        padding: 100px 0 120px;
    }

    footer {
        width: 84vw;

        padding-bottom: 45px;

        text-align: left;
    }
}
```
