body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f4f3f1;
    color: #2e2e2e;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 60px 24px;
}

/* TYPOGRAFIE */
h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* HERO */
.hero {
    padding: 140px 0 120px 0;
    border-bottom: 1px solid #e6e4e1;
}

.hero h1 {
    font-size: 38px;
	line-height: 1.3;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #555;
}

.hero .sub {
    margin-top: 40px;
    font-size: 15px;
    color: #888;
}

/* BLOKKEN */
.blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin: 90px 0;
}

.block {
    padding-bottom: 30px;
    border-bottom: 1px solid #eceae7;
}

.block h2 {
    font-size: 21px;
    margin-bottom: 10px;
}

.block p {
    color: #555;
}

.block a {
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    color: #2e2e2e;
    position: relative;
    transition: all 0.2s ease;
}

.block a::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    background: #2e2e2e;
    transition: width 0.3s ease;
}

.block a:hover::after {
    width: 100%;
}

/* QUOTE */
.quote {
    margin: 130px 0;
    text-align: center;
}

.quote p {
    font-size: 26px;
    font-style: italic;
    color: #3a3a3a;
	line-height: 1.5;
}

/* FEATURED */
.featured {
    display: grid;
    gap: 50px;
    margin-bottom: 130px;
}

.feature {
    padding-bottom: 20px;
    border-bottom: 1px solid #eceae7;
}

.feature h3 {
    font-size: 19px;
}

.feature p {
    color: #555;
}

.feature a {
    text-decoration: none;
    color: #2e2e2e;
    transition: opacity 0.2s ease;
}

.feature a:hover {
    opacity: 0.6;
}

/* IMAGE */
.image-block {
    text-align: center;
    margin-bottom: 110px;
}

.main-image {
    width: 70%;
    max-height: 450px;
    object-fit: cover;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.image-placeholder {
    height: 260px;
    background: linear-gradient(145deg, #e5e3df, #d8d5d0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 14px;
}

.image-caption {
    margin-top: 12px;
    color: #777;
    font-size: 14px;
}

/* ABOUT */
.about {
    margin-bottom: 110px;
    border-top: 1px solid #e6e4e1;
    padding-top: 40px;
}

.about-text p {
    margin-bottom: 16px;
}

.about a {
    text-decoration: none;
    color: #2e2e2e;
}

/* FOOTER */
.footer {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-top: 60px;
}

/* DESKTOP */
@media (min-width: 700px) {
    .blocks {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .block {
        border-bottom: none;
    }

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