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

body {
    font-family: 'Georgia', serif;
    background: #fdfcf9;
    color: #2c2c2c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.landing {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

h1 {
    font-size: 2.8rem;
    color: #3a3a3a;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.tagline {
    color: #8b7d6b;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 4rem;
}

.gates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gate {
    text-decoration: none;
    color: inherit;
    padding: 2.5rem 1.5rem;
    border: 1px solid #e0d8c8;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gate:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

img.gate-icon {
    display: block;
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    min-width: 0;
    object-fit: contain;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.gate h2 {
    font-size: 1.1rem;
    color: #4a3728;
    margin-bottom: 0.4rem;
}

.gate p {
    font-size: 0.85rem;
    color: #8b7d6b;
}

footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #a89f91;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .gates {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .tagline {
        margin-bottom: 2.5rem;
    }

    .gate {
        padding: 1.5rem 1rem;
    }

    img.gate-icon {
        width: 60px !important;
        height: 60px !important;
        max-width: 60px !important;
        max-height: 60px !important;
    }
}
