 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
        body {
            background: linear-gradient(90deg, #01040a 0%, #0b1a33 35%, #162a52 70%, #1e2a4a 100%);
            min-height: 100vh;
            font-family: 'Georgia', serif;
            color: white;
        }
 
        /* ─── HEADER ─── */
        .site-header {
            height: 100px;
            background: linear-gradient(90deg, #01040a 0%, #0b1a33 35%, #162a52 70%, #1e2a4a 100%);
            width: 100%;
        }
        .header-inner {
            max-width: 1200px;
            height: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
        }
        .logo img { height: 150px; width: auto; margin-left: -35px; }
        .nav-links a {
            color: #C8A96A;
            text-decoration: none;
            margin-left: 30px;
            font-size: 16px;
            transition: opacity 0.2s;
        }
        .nav-links a:hover { opacity: 0.65; }
 
        /* ─── BACK ─── */
        .breadcrumb {
            max-width: 1100px;
            margin: 0 auto;
            padding: 32px 40px 0;
        }
        .breadcrumb a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            transition: color 0.2s;
        }
        .breadcrumb a:hover { color: #C8A96A; }
 
        /* ─── PAGE TITLE ─── */
        .page-title {
            max-width: 1100px;
            margin: 0 auto;
            padding: 56px 40px 64px;
            border-bottom: 1px solid rgba(200,169,106,0.2);
        }
        .eyebrow {
            font-size: 0.72rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #bfa98a;
            margin-bottom: 18px;
        }
        .page-title h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: normal;
            color: #bfa98a;
            line-height: 1.2;
            text-transform: uppercase;
            font-size: 30px;
            letter-spacing: 0.12rem;
        }
 
        /* ─── SERVICE BLOCKS ─── */
        .services-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px 100px;
        }
 
        .service-block {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 6rem;
            padding: 70px 0;
            border-bottom: 1px solid rgba(255,255,255,0.07);
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
        .service-block.in-view { opacity: 1; transform: translateY(0); }
        .service-block:last-child { border-bottom: none; }
 
        /* Left */
        .sb-left { padding-top: 4px; }
        .sb-icon { width: 40px; height: 40px; color: #C8A96A; margin-bottom: 20px; }
        .sb-icon svg { width: 100%; height: 100%; }
        .sb-title {
            font-size: 1.55rem;
            font-weight: normal;
            color: white;
            margin-bottom: 16px;
            line-height: 1.25;
        }
        .sb-intro {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.85;
            margin-bottom: 28px;
        }
        .sb-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #bfa98a;
            font-family: 'Georgia', serif;
            font-size: 0.82rem;
            text-decoration: none;
            border: 1px solid rgba(200,169,106,0.3);
            border-radius: 7px;
            padding: 10px 18px;
            transition: background 0.2s, border-color 0.2s, gap 0.2s;
        }
        .sb-cta:hover {
            background: rgba(200,169,106,0.08);
            border-color: #C8A96A;
            gap: 12px;
        }
 
        /* Right — feature list */
        .sb-features {
            display: flex;
            flex-direction: column;
            padding-left: 150px;
            }
 
        .feature-row {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            padding: 22px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .feature-row:first-child { padding-top: 0; }
        .feature-row:last-child { border-bottom: none; }
 
        .feature-num {
            font-size: 0.65rem;
            color: rgba(200,169,106,0.5);
            letter-spacing: 0.1em;
            padding-top: 3px;
            min-width: 24px;
        }
        .feature-title {
            font-size: 0.95rem;
            color: white;
            margin-bottom: 5px;
            font-weight: normal;
        }
        .feature-text {
            font-size: 0.83rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.65;
        }
 
        /* ─── FOOTER ─────────────────────────────────────── */
.footer {
    background: linear-gradient(90deg, #01040a 0%, #0b1a33 35%, #162a52 70%, #1e2a4a 100%);
    border-top: 1px solid rgba(200,169,106,0.25);
    font-family: 'Georgia', serif;
    color: hsl(35, 29%, 65%);
    width: 100%;
}

/* YLÄOSA */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;                 
    max-width: 1150px;
    margin: 0 auto;
    padding: 5px 5px;        
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 180px;
}

/* LOGO */
.footer-logo {
    height: 160px;             
    margin-bottom: 10px;
    margin-left: -75px; 
    margin-top: 20px;       
}
.tal-logo {
    height: 100px;
    margin-bottom:10px;
    width: auto;
    margin-top: 30px;
}



/* TEKSTI */
.footer-section p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 10px;
    margin-top: 30px;
}

/* LINKIT */
.footer-section a {
    display: block;
    text-decoration: none;
    color: hsl(35, 29%, 65%);  
    font-size: 0.8rem;
    margin-bottom: 4px;
    margin-top: 30px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #C8A96A;             
}

/* ALARIVI */
.footer-bottom {
    text-align: center;
    padding: 10px;             
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.7rem;
}
 
        /* ─── RESPONSIVE ─── */
        @media (max-width: 780px) {
            .service-block { grid-template-columns: 1fr; gap: 2rem; }
            .header-inner, .breadcrumb, .page-title, .services-wrapper { padding-left: 20px; padding-right: 20px; }
        }

/* HAMPPARIMENYY */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #C8A96A;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

/* TABLETTI */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        margin-top: 0;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 40px 40px 40px;
    }

    .hero-right {
        max-height: 420px;
    }

    .section-about {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 40px;
    }

    .cta-inner {
        padding: 70px 40px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .site-header {
        height: auto;
        padding: 16px 0;
    }

    .header-inner {
        padding: 0 20px;
        flex-wrap: wrap;
        align-items: center;
    }

    .logo img {
        height: 90px;
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        padding-top: 16px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        margin-left: 0;
        font-size: 15px;
    }

    .hero-left {
        padding: 40px 20px 30px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .hero-right {
        max-height: 320px;
    }

    .section-about {
        padding: 60px 20px;
        gap: 36px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .pat-rivi {
        gap: 14px;
        padding: 16px 0;
    }

    .pat-tagit {
        flex-wrap: wrap;
    }

    .cta-inner {
        padding: 60px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .footer-logo {
        height: 100px;
        margin-left: 0;
        margin-top: 0;
    }

    .tal-logo {
        height: 70px;
        margin-top: 10px;
    }

    .footer-section p,
    .footer-section a {
        margin-top: 10px;
    }
}