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

:root {
    --green-dark: #0b2a16;
    --green-deep: #12351f;
    --green-mid: #183f25;
    --gold: #d8ad45;
    --gold-dark: #bb912f;
    --cream: #f4efe6;
    --white: #ffffff;
    --text-dark: #1d1d1d;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    --radius: 18px;
    --max-width: 1200px;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.site-header {
    background:
        radial-gradient(circle at center, rgba(46, 106, 54, 0.28) 0%, rgba(11, 42, 22, 0) 45%),
        linear-gradient(90deg, #06210f 0%, #0b2a16 50%, #06210f 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo {
    height: 78px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-nav a {
    color: var(--white);
    font-size: 1.05rem;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

.btn {
    display: inline-block;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-small {
    padding: 11px 20px;
    font-size: 0.98rem;
}

.btn-gold {
    background: var(--gold);
    color: #1d1d1d;
}

.btn-gold:hover {
    background: var(--gold-dark);
}

.btn-green {
    background: var(--green-deep);
    color: var(--white);
}

.btn-green:hover {
    background: #0f2f19;
}

.hero {
    position: relative;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 80px 0;
    max-width: 760px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 500;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 28px;
    line-height: 1.35;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cards-section {
    padding: 42px 0 34px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.info-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 20px 22px 24px;
}

.card-content h3 {
    font-size: 2.1rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 90%;
}

.why-section {
    padding: 42px 0 46px;
    color: var(--white);
    background:
        radial-gradient(circle at center, rgba(46, 106, 54, 0.28) 0%, rgba(11, 42, 22, 0) 45%),
        linear-gradient(90deg, #06210f 0%, #0b2a16 50%, #06210f 100%);
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    margin-bottom: 28px;
    color: inherit;
}

.section-title.center {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 8px;
}

.feature {
    padding: 10px 12px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.feature h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.25rem;
    max-width: 300px;
}

.glimpse-section {
    padding: 34px 0 52px;
}

.glimpse-section .section-title {
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

.glimpse-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.site-footer {
    padding: 24px 0;
    background: #081b0f;
    color: rgba(255,255,255,0.85);
    text-align: center;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .main-nav {
        gap: 22px;
    }

    .hero-content p {
        font-size: 1.25rem;
    }
}

@media (max-width: 900px) {
    .nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cards-grid,
    .features-grid,
    .glimpse-grid {
        grid-template-columns: 1fr;
    }

    .card-content p,
    .feature p {
        max-width: 100%;
    }

    .info-card img,
    .glimpse-grid img {
        height: auto;
    }

    .hero {
        min-height: 560px;
    }
}

@media (max-width: 640px) {
    .brand-logo {
        height: 64px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .card-content h3,
    .feature h3 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 2rem;
    }
}