* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg, #f8f1e8, #e9ddcf);
    color: #2f2a25;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.page-wrapper {
    width: min(1100px, 100%);
}

header {
    text-align: center;
    margin-bottom: 42px;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7b6758;
    margin-bottom: 14px;
}

h1 {
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 18px;
}

.intro {
    max-width: 650px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #5f5148;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    min-height: 270px;
    background: rgba(255, 252, 247, 0.82);
    border: 1px solid rgba(94, 73, 58, 0.18);
    border-radius: 26px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 45px rgba(56, 42, 31, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(56, 42, 31, 0.18);
    background: #fffaf3;
}

.number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2f2a25;
    color: #fffaf3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 28px;
}

h2 {
    font-size: 31px;
    font-weight: 400;
    margin-bottom: 14px;
}

.description {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #65574d;
}

.open-label {
    margin-top: 32px;
    font-family: Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8b5e3c;
}

footer {
    text-align: center;
    margin-top: 34px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #77685f;
}

@media (max-width: 850px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        min-height: 220px;
    }
}

.needspace{
    margin-bottom: 10px;
}

.project-preview {
    width: 100%;
    height: 170px;
    object-fit: cover;

    border-radius: 18px;

    margin-bottom: 24px;

    box-shadow: 0 10px 25px rgba(0,0,0,.12);

    transition: transform .25s ease;
}

.project-card:hover .project-preview {
    transform: scale(1.02);
}