/* ========================================
   HERO
======================================== */

.hero {
    padding: 95px 0 90px;

    background:
        linear-gradient(
            135deg,
            rgba(237,244,239,0.96),
            rgba(255,255,255,0.96)
        );
}


.hero-inner {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 70px;
}


.hero-label {
    color: var(--green);

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    font-size: 0.82rem;

    margin-bottom: 17px;
}


.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);

    line-height: 1.05;

    font-weight: 750;

    color: var(--green-dark);

    max-width: 800px;
}


.hero p {
    margin-top: 24px;

    max-width: 680px;

    font-size: 1.15rem;

    color: var(--grey);
}


.hero-buttons {
    margin-top: 32px;

    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.hero-logo {
    display: flex;

    justify-content: center;
}


.hero-logo img {
    width: min(390px, 100%);

    filter:
        drop-shadow(
            0 12px 24px rgba(0,0,0,0.08)
        );
}



/* ========================================
   GENERELLE SEKTIONER
======================================== */

section {
    padding: 85px 0;
}


.section-light {
    background: var(--light-grey);
}


.section-heading {
    max-width: 720px;

    margin-bottom: 45px;
}


.section-heading span {
    color: var(--green);

    font-size: 0.8rem;

    text-transform: uppercase;

    letter-spacing: 0.09em;

    font-weight: 700;
}


.section-heading h2 {
    margin-top: 8px;

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.15;

    color: var(--green-dark);
}


.section-heading p {
    margin-top: 14px;

    color: var(--grey);

    font-size: 1.05rem;
}



/* ========================================
   YDELSER
======================================== */

.services {
    display: grid;

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

    gap: 22px;
}


.service {
    padding: 30px;

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

    border-radius: 10px;

    background: white;
}


.service-number {
    font-size: 0.78rem;

    font-weight: 700;

    color: var(--green);

    margin-bottom: 13px;
}


.service h3 {
    font-size: 1.2rem;

    margin-bottom: 10px;

    color: var(--charcoal);
}


.service p {
    color: var(--grey);

    font-size: 0.95rem;
}



/* ========================================
   OM OS
======================================== */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;
}


.about-text p {
    margin-bottom: 18px;

    color: var(--grey);

    font-size: 1.04rem;
}


.customer-box {
    background: var(--green-dark);

    color: white;

    padding: 38px;

    border-radius: 10px;
}


.customer-box h3 {
    font-size: 1.35rem;

    margin-bottom: 20px;
}


.customer-box ul {
    list-style: none;
}


.customer-box li {
    padding: 10px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.17);
}


.customer-box li:last-child {
    border-bottom: none;
}



/* ========================================
   REFERENCER - INTRO PÅ FORSIDEN
======================================== */

.reference-intro {
    margin-top: 26px;

    padding-top: 24px;

    border-top:
        1px solid rgba(255,255,255,0.22);
}


.reference-intro p {
    margin-bottom: 18px;

    color: rgba(255,255,255,0.82);

    font-size: 0.95rem;

    line-height: 1.6;
}


.reference-button {
    display: inline-block;

    padding: 11px 18px;

    background: white;

    color: var(--green-dark);

    text-decoration: none;

    border-radius: 6px;

    font-weight: 650;

    transition: 0.15s ease;
}


.reference-button:hover {
    background: var(--green-light);
}



/* ========================================
   SÅDAN ARBEJDER VI
======================================== */

.principles {
    display: grid;

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

    gap: 30px;
}


.principle {
    border-left: 3px solid var(--green);

    padding-left: 20px;
}


.principle h3 {
    margin-bottom: 8px;

    font-size: 1.1rem;
}


.principle p {
    color: var(--grey);

    font-size: 0.95rem;
}



/* ========================================
   TESTIMONIAL
======================================== */

.testimonial {
    padding: 75px 0;

    background: var(--green-light);

    text-align: center;
}


.testimonial .container {
    max-width: 850px;
}


.testimonial blockquote {
    margin: 0 auto;

    font-size: clamp(1.4rem, 3vw, 2rem);

    line-height: 1.5;

    font-weight: 500;

    color: var(--green-dark);

    font-style: italic;
}


.testimonial blockquote::before {
    content: "“";
}


.testimonial blockquote::after {
    content: "”";
}


.testimonial-source {
    margin-top: 24px;

    font-size: 0.95rem;

    font-weight: 650;

    color: var(--charcoal);
}


.testimonial-link {
    display: inline-block;

    margin-top: 22px;

    color: var(--green-dark);

    font-weight: 650;

    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition: 0.15s ease;
}


.testimonial-link:hover {
    border-bottom-color: var(--green-dark);
}



/* ========================================
   GALLERI
======================================== */

.gallery {
    display: grid;

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

    gap: 18px;
}


.gallery-item {
    min-height: 260px;

    background: #e8ece9;

    border-radius: 8px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--grey);

    text-align: center;

    padding: 20px;
}


.gallery-item img {
    width: 100%;

    height: 100%;

    min-height: 260px;

    object-fit: cover;
}



/* ========================================
   KONTAKT
======================================== */

.contact {
    background: var(--green-dark);

    color: white;
}


.contact-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 70px;

    align-items: center;
}


.contact h2 {
    color: white;
}


.contact-intro {
    margin-top: 17px;

    max-width: 600px;

    color: rgba(255,255,255,0.8);

    font-size: 1.05rem;
}


.contact-details {
    background: white;

    color: var(--charcoal);

    border-radius: 10px;

    padding: 34px;
}


.contact-row {
    padding: 14px 0;

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


.contact-row:last-child {
    border-bottom: none;
}


.contact-label {
    display: block;

    font-size: 0.76rem;

    text-transform: uppercase;

    color: var(--grey);

    letter-spacing: 0.08em;

    margin-bottom: 3px;
}


.contact-details a {
    color: var(--green-dark);

    font-weight: 650;

    text-decoration: none;
}



/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 850px) {

    .hero {
        padding: 60px 0;
    }


    .hero-inner,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }


    .hero-logo {
        order: -1;
    }


    .hero-logo img {
        max-width: 250px;
    }


    .services,
    .principles {
        grid-template-columns: 1fr 1fr;
    }


    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .services,
    .principles,
    .gallery {
        grid-template-columns: 1fr;
    }


    section {
        padding: 65px 0;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .button {
        text-align: center;
    }
}