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

html {
    scroll-behavior: smooth;
}

/* GLOBAL */
body {
    font-family: "Trebuchet MS", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(46, 125, 50, 0.25), transparent 35%),
        linear-gradient(135deg, #07120a, #111111 45%, #1a1404);
    color: #f4ead0;
    line-height: 1.6;
}

/* CONTAINERS */
.container {
    max-width: 880px;
    margin: auto;
    padding: 48px 22px;
}

/* HERO */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 55px 22px;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.85)),
        repeating-linear-gradient(
            -8deg,
            rgba(212, 175, 55, 0.08),
            rgba(212, 175, 55, 0.08) 2px,
            transparent 2px,
            transparent 12px
        ),
        #07120a;
    border-bottom: 2px solid #d4af37;
}

.hero-content {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 38px;
}

.hero-text h1 {
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
    font-size: 4.7rem;
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f7d768;
    text-shadow: 4px 4px 0 #0b3d1a, 8px 8px 0 rgba(0,0,0,0.45);
    margin-bottom: 18px;
}

.hero-text h2 {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #9fd18b;
    margin-bottom: 18px;
}

.tagline {
    font-size: 1.25rem;
    max-width: 520px;
    color: #f4ead0;
    border-left: 4px solid #d4af37;
    padding-left: 16px;
}

/* IMAGE */
.hero-image img {
    width: 100%;
    max-width: 340px;
    border-radius: 6px;
    border: 3px solid #d4af37;
    filter: contrast(1.08) saturate(0.9);
    box-shadow: 12px 12px 0 #0b3d1a, 0 25px 70px rgba(0,0,0,0.7);
}

/* SECTIONS */
.section {
    padding: 48px 0;
    background:
        linear-gradient(135deg, #f4ead0, #dfd0a9);
    color: #101010;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.section.dark {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(212, 175, 55, 0.06),
            rgba(212, 175, 55, 0.06) 2px,
            transparent 2px,
            transparent 14px
        ),
        #0b160d;
    color: #f4ead0;
}

.section h3 {
    font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b3d1a;
    margin-bottom: 18px;
}

.section.dark h3 {
    color: #f7d768;
    text-shadow: 3px 3px 0 rgba(11, 61, 26, 0.9);
}

.section h3::after {
    content: "";
    display: block;
    width: 72px;
    height: 5px;
    background: #d4af37;
    margin-top: 8px;
}

.section h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0b3d1a;
    margin-bottom: 8px;
}

.section.dark h4 {
    color: #d4af37;
}

.big-text {
    font-size: 1.2rem;
    max-width: 720px;
    font-weight: 600;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}

/* CARDS */
.card {
    background: rgba(255,255,255,0.75);
    padding: 20px;
    border: 2px solid #0b3d1a;
    border-radius: 4px;
    box-shadow: 8px 8px 0 rgba(11, 61, 26, 0.25);
    transition: 0.2s ease;
}

.card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0 rgba(212, 175, 55, 0.55);
}

.section.dark .card {
    background: #111f14;
    border: 2px solid #d4af37;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.5);
}

.card h4 {
    font-size: 1.15rem;
    color: #0b3d1a;
}

.section.dark .card h4 {
    color: #f7d768;
}

/* LISTS */
ul {
    padding-left: 22px;
    margin-top: 12px;
}

li {
    margin-bottom: 8px;
}

/* CONTACT */
.section.dark p {
    margin-bottom: 8px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 24px;
    background: #050805;
    color: #d4af37;
    border-top: 2px solid #d4af37;
    font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 800px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.3rem;
    }

    .tagline {
        border-left: none;
        border-top: 4px solid #d4af37;
        padding-left: 0;
        padding-top: 14px;
        margin: auto;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 260px;
    }
}
