:root {
    --es-bg: #0c0d0c;
    --es-panel: #151715;
    --es-accent: #8A9A5B;
    --es-txt: #e2e8e2;
    --es-border: 1px solid rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--es-bg); color: var(--es-txt); font-family: 'Montserrat', sans-serif; line-height: 1.6; }
.es-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Header & Nav */
.es-nav { padding: 25px 0; border-bottom: var(--es-border); background: rgba(12,13,12,0.9); position: sticky; top: 0; z-index: 100; }
.es-nav-flex { display: flex; justify-content: space-between; align-items: center; }
.es-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--es-accent); font-weight: 700; }
.es-menu a { color: #fff; text-decoration: none; margin-left: 30px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.es-hero { 
    height: 80vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background-size: cover; 
    background-position: center; 
}
.es-h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 7vw, 4.5rem); margin-bottom: 20px; }
.es-accent { color: var(--es-accent); }
.es-sub { font-size: 1.2rem; color: #ccc; max-width: 800px; margin: 0 auto; }

.es-btn-main { 
    display: inline-block; 
    background: var(--es-accent); 
    color: #000; 
    padding: 18px 40px; 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 4px; 
    text-transform: uppercase; 
}

/* Grid & Cards */
.es-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.es-card { background: var(--es-panel); border: var(--es-border); border-radius: 8px; overflow: hidden; padding-bottom: 30px; }
.card-img { 
    height: 300px; 
    background-size: cover; 
    background-position: center; 
    background-color: #333; /* Заглушка */
    margin-bottom: 25px; 
}
.es-card h3 { padding: 0 25px; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.es-card p { padding: 0 25px; color: #999; }

/* Form */
.es-form-section { padding: 100px 0; background: #111; }
.es-form-box { max-width: 600px; margin: 0 auto; text-align: center; }
.es-inp { width: 100%; padding: 18px; background: #000; border: var(--es-border); color: #fff; margin-bottom: 20px; border-radius: 4px; }
.es-btn-submit { width: 100%; padding: 20px; background: var(--es-accent); border: none; font-weight: 700; cursor: pointer; text-transform: uppercase; }
.es-legal-tiny { margin-top: 15px; font-size: 0.7rem; color: #555; }

/* Footer */
.es-foot { padding: 60px 0; border-top: var(--es-border); color: #666; font-size: 0.8rem; }
.es-foot-grid { display: flex; justify-content: space-between; }
.es-foot a { color: #666; text-decoration: none; }

@media (max-width: 768px) {
    .es-grid { grid-template-columns: 1fr; }
    .es-foot-grid { flex-direction: column; text-align: center; gap: 30px; }
}