
:root {
    --black: #090909;
    --black-soft: #111111;
    --dark: #171717;
    --white: #f5f3ee;
    --grey: #a7a7a7;
    --grey-dark: #666666;
    --accent: #81461f;
    --border: rgba(255, 255, 255, 0.12);

    --max-width: 1200px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: var(--white);

    font-family: "Inter", sans-serif;

    line-height: 1.9;

    overflow-x: hidden;
}

/* =====================================================
   HERO LOGO
===================================================== */

.esittely-logo {
    width: 100%;

    display: flex;

    justify-content: center;

    margin: 35px 0 35px;
}


.esittely-logo img {
    display: block;

    width: min(650px, 75vw);

    height: auto;

    object-fit: contain;

    filter: drop-shadow(
        0 10px 30px rgba(0, 0, 0, 0.35)
    );
}
img {
    display: block;
    width: 100%;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: 0 auto;
}



.site-header {
    
    width: 100%;

    top: 0;
    left: 0;

    z-index: 100;

    border-bottom: 1px solid var(--border);
}


.nav-container {
    min-height: 82px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.logo img {
    display: block;
    width: 140px;
    height: auto;
}


.logo span {
    color: var(--accent);
}


.main-nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 28px;

    margin-left: auto;
}


.main-nav a {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.25s ease;
}


.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

/* =====================================================
   ARTIST PREVIEW
===================================================== */

.artist-preview {
    background: var(--black-soft);
}


.artist-preview-intro {
    max-width: 600px;

    margin-top: 25px;

    color: var(--grey);

    font-size: 18px;
    
}


.artist-preview-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    margin-top: 55px;
}


.artist-preview-card {
    display: block;

    overflow: hidden;

    background: #151515;
}


.artist-preview-image {
    position: relative;

    aspect-ratio: 3 / 4;

    overflow: hidden;
}


.artist-preview-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


.artist-preview-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(156, 104, 7, 0.82);

    opacity: 0;

    transition: opacity 0.3s ease;
}


.artist-preview-overlay span {
    display: flex;

    width: 60px;
    height: 60px;

    align-items: center;
    justify-content: center;

    border: 2px solid #000;

    border-radius: 50%;

    color: #000;

    font-size: 30px;

    transform: translateY(15px);

    transition: transform 0.3s ease;
}


.artist-preview-card:hover
.artist-preview-overlay {
    opacity: 1;
}


.artist-preview-card:hover
.artist-preview-overlay span {
    transform: translateY(0);
}


.artist-preview-card:hover
.artist-preview-image img {
    transform: scale(1.05);
}


.artist-preview-name {
    padding: 10px;
}


.artist-preview-name span {
    display: block;
    color: var(--grey);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}


.artist-preview-name h3 {
    margin-top: 5px;

    color: var(--white);

    font-family: "Anton", sans-serif;

    font-size: 27px;

    font-weight: 400;

    line-height: 1;
}


.artist-preview-button {
    margin-top: 45px;
}

/* =====================================================
   AVAIMET KÄTEEN
===================================================== */

.turnkey {
    background: var(--white);

    color: var(--black);
}


.turnkey-grid {
    display: grid;

    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);

    gap: 80px;

    align-items: end;
}


.turnkey .section-label {
    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.turnkey h2 {
    margin-top: 15px;

    font-size: clamp(55px, 7vw, 95px);

    line-height: 1.1;
}


.turnkey-copy > p:not(.section-label) {
    max-width: 700px;

    margin-top: 25px;

    color: #444;

    font-size: 19px;
}


.turnkey .button {
    margin-top: 35px;
}


.turnkey-highlight {
    padding-left: 30px;

    border-left: 4px solid var(--accent);

    font-family: "Anton", sans-serif;

    font-size: clamp(28px, 3vw, 44px);

    line-height: 1.15;

    text-transform: uppercase;
}


.esittely {
    min-height: 100svh;
    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92),
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.72)
        ),
        url(EE-taustakuva.jpg)
        center / cover no-repeat;
}

.esittely-content {
    position: relative;
    z-index: 2;

    /* Pienempi padding nostaa sisältöä */
    padding-top: 0;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.esittely h1 {
    max-width: 900px;

    font-family: "Anton", sans-serif;

    font-size: clamp(60px, 12vw, 150px);

    line-height: 0.9;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.esittely-tagline {
    margin-top: -10px;

    color: var(--accent);

    font-size: clamp(35px, 1.6vw, 16px);

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.esittely-text {
    max-width: 570px;

    margin: 25px auto 0;
    color: #d0d0d0;
text-align: center;
    font-size: 18px;
}


.esittely-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}


.button {
    display: inline-flex;

    min-height: 52px;

    padding: 0 28px;

    align-items: center;
    justify-content: center;

    border: 1px solid transparent;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


.button:hover {
    transform: translateY(-3px);
}


.button-primary {
    background: var(--accent);

    color: #000;
}


.button-primary:hover {
    background: #efffb0;
}


.button-outline {
    border-color: rgba(255,255,255,0.5);
}


.button-outline:hover {
    background: white;

    color: black;
}


.button-light {
    background: var(--white);

    color: var(--black);
}


.esittely-scroll {
    position: absolute;

    right: 40px;
    bottom: 30px;

    color: var(--accent);

    font-size: 30px;
}



.section {
    padding: 110px 0;
}


.intro {
    background: var(--white);

    color: var(--black);
}


.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}


.intro .section-label {
    color: #81461f;
}


h2 {
    font-family: "Anton", sans-serif;

    font-weight: 400;

    line-height: 0.95;

    text-transform: uppercase;
}


.intro h2 {
    font-size: clamp(55px, 7vw, 95px);
}


.intro-copy {
    padding-top: 15px;

    font-size: 19px;
}


.intro-copy p + p {
    margin-top: 25px;
}


.text-link {
    display: inline-block;

    margin-top: 35px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    border-bottom: 2px solid var(--black);

    padding-bottom: 7px;
}




.services {
    background: var(--black-soft);
}


.section-heading {
    margin-bottom: 55px;
}


.section-heading h2 {
    font-size: clamp(55px, 8vw, 100px);
}

.section-heading p
{
    color:#81461f;
}


.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: var(--border);
}


.service-card {
    min-height: 300px;

    padding: 35px;

    background: var(--black-soft);
}


.service-number {
    color: var(--accent);

    font-size: 13px;

    font-weight: 800;
}


.service-card h3 {
    margin-top: 70px;

    font-size: 28px;
}


.service-card p {
    max-width: 350px;

    margin-top: 18px;

    color: var(--grey);
}



.cta-section {
    position: relative;

    padding: 130px 0;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.5)
        ),
        url(Jussi-promokuva.JPG)
        center / cover no-repeat;
}


.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content p {
    color: #81461f;
}

.cta-section h2 {
    max-width: 900px;

    margin-bottom: 40px;

    font-size: clamp(60px, 10vw, 130px);
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background: var(--black);
}


.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
}


.contact-intro {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.contact h2 {
    max-width: 550px;

    margin-top: 18px;

    font-size: clamp(34px, 4vw, 58px);

    line-height: 1.1;

    font-family: "Anton", sans-serif;
}


.contact .section-label {
    color: var(--accent);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.ala-logo {
    display: block;

    margin-top: 45px;
}


.ala-logo img {
    width: min(260px, 100%);
}

.contact h3 {
    font-size: clamp(20px, 7vw, 60px);
    line-height: 1.3;
    font-family: "Anton", sans-serif;

    font-weight: 300;
}



.contact-details {
    border-top: 1px solid var(--border);
}


.contact-item {
    display: flex;

    flex-direction: column;

    gap: 7px;

    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}


.contact-item span {
    color: var(--grey);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.contact-item a {
    font-size: 20px;

    font-weight: 600;
}


.contact-item a:hover {
    color: var(--accent);
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    border-top: 1px solid var(--border);

    background: #050505;
}


.footer-content {
    min-height: 100px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer p {
    color: var(--grey);

    font-size: 12px;
}


.footer-social {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.social-button {
    display: inline-flex;

    min-height: 38px;

    padding: 0 14px;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.25s ease;
}


.social-button:hover {
    border-color: var(--accent);

    background: var(--accent);

    color: var(--black);
}


/* =====================================================
   ARTISTS PAGE
===================================================== */
.page-esittely {
    padding: 25px 0;
}


.page-esittely h1 {
    font-family: "Anton", sans-serif;

    font-size: clamp(75px, 15vw, 180px);

    line-height: 0.9;

    letter-spacing: 5px;
}


.page-esittely > .container > p:last-child {
    max-width: 650px;

    margin: 0 auto;

    color: var(--grey);

    font-size: 18px;
}


.artists {
    background: var(--white);

    color: var(--black);
}


.artist-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 50px;
}


.artist-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #e6e4df;
}


.artist-image {
    aspect-ratio: 4 / 3;

    overflow: hidden;
}


.artist-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.artist-card:hover .artist-image img {
    transform: scale(1.04);
}


.artist-info {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 30px;
}


.artist-genre {
    color: #777;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.artist-info h2 {
    margin-top: 8px;
    line-height: 70px;

    font-size: clamp(40px, 5vw, 60px);
}


.artist-info > p:not(.artist-genre) {
    max-width: 550px;
line-height: normal;
    margin-top: 20px;

    color: #444;
}


.artist-media {
    margin-top: auto;

    padding-top: 25px;

    border-top: 1px solid rgba(0,0,0,0.15);
}


.artist-media h3 {
    font-size: 11px;

    letter-spacing: 2px;
}


.media-links {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 15px;
}


.media-button {
    display: inline-flex;

    min-height: 44px;

    align-items: center;

    padding: 0 18px;

    font-size: 12px;

    font-weight: 800;

    transition: 0.25s ease;
}


.youtube {
    background: #111;

    color: white;
}


.youtube:hover {
    background: #333;
}


.spotify {
    background: #81461f;

    color: #000;
}


.artist-booking {
    display: inline-block;

    margin-top: 30px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    border-bottom: 2px solid black;

    padding-bottom: 6px;
}


.artist-booking:hover {
    color: #555;
}


.artist-cta {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.88),
            rgba(0,0,0,0.45)
        ),
        url("https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=2200&q=85")
        center / cover no-repeat;
}

/* =====================================================
   ARVOT
===================================================== */

.values-section {
    width: 100%;
    background: var(--white);
    color: var(--black);
    overflow: hidden;
}

.values-cta h2 {
    font-size: clamp(48px, 7vw, 88px);
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
}

.value-card {
    min-width: 0;
    width: 100%;
    min-height: 330px;

    padding: 40px;

    background: var(--white);

    overflow: hidden;
}

.value-card > span {
    color: #777;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.value-card h2 {
    margin-top: 70px;

    font-size: clamp(45px, 6vw, 75px);
    line-height: 0.9;

    max-width: 100%;

    overflow-wrap: break-word;
}

.value-card p {
    width: 100%;
    max-width: 500px;

    margin-top: 20px;

    color: #444;

    line-height: 1.5;

    overflow-wrap: break-word;
}
/* =====================================================
   TARINAMME
===================================================== */

.story-section {
    background: var(--white);

    color: var(--black);
}


.story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}


.story-title h2 {
    font-size: clamp(60px, 8vw, 110px);

    line-height: 0.85;
}


.story-text {
    font-size: 19px;
}


.story-text p + p {
    margin-top: 28px;
}


.story-image {
    width: 100%;

    height: 600px;

    overflow: hidden;
}


.story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.story-highlight {
    background: var(--black);

    text-align: center;
}


.story-highlight h2 {
    font-size: clamp(60px, 10vw, 130px);

    line-height: 0.85;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .intro-grid,
    .contact-grid,
    .turnkey-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .service-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: auto;

        padding: 30px;
    }


    .service-card h3 {
        margin-top: 45px;
    }


    .artist-grid {
        grid-template-columns: 1fr;
    }


    .artist-info h2 {
        font-size: 65px;
    }

}


/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 700px) {

    .values-grid {
        grid-template-columns: 1fr;
    }


    .value-card {
        min-height: auto;

        padding: 30px;
    }


    .value-card h2 {
        margin-top: 45px;
    }


    .story-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .story-text {
        font-size: 16px;
    }


    .story-image {
        height: 350px;
    }

}
@media (max-width: 600px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--max-width)
        );
    }


    .nav-container {
        min-height: 0;
        padding: 14px 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }


    .logo {
        font-size: 22px;
    }


    .main-nav {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        gap: 14px;
    }


    .main-nav a {
        font-size: 16px;

        letter-spacing: 0.35px;
    }

    .nav-container > h1 {
        width: 100%;
        font-size: 24px;
        line-height: 1;
        text-align: center;
    }

    .esittely-logo {
        margin: 25px 0 25px;
    }

    .esittely-logo img {
        width: 88vw;
    }

    .esittely {
        min-height: 760px;
        align-items: flex-start;
        background-position: 60% center;
    }


    .esittely-content {
        padding-top: 28px;
    }


    .esittely h1 {
        font-size: clamp(58px, 18vw, 100px);

        letter-spacing: -1px;
    }


    .esittely-text {
        font-size: 16px;
    }


     .esittely-buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .esittely-buttons .button {
        width: auto;
        min-height: 48px;
        padding: 0 18px;
    }



    .button {
        width: 100%;
    }


    .esittely-scroll {
        display: none;
    }


    .section {
        padding: 80px 0;
    }


    .intro h2,
    .contact h2 {
        font-size: 60px;
    }


    .intro-copy {
        font-size: 17px;
    }


    .turnkey-copy > p:not(.section-label) {
        font-size: 17px;
    }


    .section-heading h2 {
        font-size: 62px;
    }


    .cta-section {
        padding: 100px 0;
    }


    .cta-section h2 {
        font-size: 65px;
    }


    .values-cta h2 {
        font-size: 50px;
    }


    .page-esittely {
        padding: 38px 0 32px;
    }


    .page-esittely h1 {
        font-size: 80px;
    }


    .page-esittely > .container > p:last-child {
        font-size: 16px;
    }

    /* Etusivun artistit olivat mobiilissa neljässä liian kapeassa sarakkeessa. */
    .artist-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin-top: 32px;
    }

    .artist-preview-name {
        padding: 12px 10px;
    }

    .artist-preview-name h3 {
        font-size: clamp(20px, 7vw, 28px);
    }

  .artist-card {
    width: 100%;
  }

  .artist-card h2 {
    font-size: 2rem;
    line-height: 0.95;
    overflow-wrap: normal;
    word-break: normal;
  }


    .artist-info {
        padding: 24px;
    }


    .artist-info h2 {
        font-size: clamp(38px, 10vw, 48px);
        line-height: 1.08;
        overflow-wrap: anywhere;
        word-break: break-word;
    }


    .artist-info > p:not(.artist-genre) {
        font-size: 15px;
    }


    .contact-item a {
        font-size: 17px;
    }

    .contact h2 {
        max-width: 100%;
        margin-top: 30px;
        font-size: clamp(38px, 11vw, 48px);
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .artist-cta {
        padding: 72px 0;
    }

    .artist-cta h2 {
        font-size: clamp(38px, 11vw, 44px);
        line-height: 0.95;
        overflow-wrap: anywhere;
    }


    .footer-content {
        min-height: 0;

        padding: 28px 0;

        flex-direction: column;

        justify-content: center;

        gap: 12px;
    }

    .footer-social {
        justify-content: center;
    }

}


@media (max-width: 380px) {

    .main-nav {
        gap: 8px;
    }


    .main-nav a {
        font-size: 13px;
    }


    .esittely h1 {
        font-size: 55px;
    }


    .page-esittely h1 {
        font-size: 68px;
    }


    .artist-info h2 {
        font-size: 48px;
    }

}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;
    }

}
