:root {
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #6b7280;
    --accent: #f97316;
    --radius: 14px;
    --container: 1080px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */

.header {
    padding: 40px 0 30px;
    text-align: center;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.site-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.site-subtitle {
    margin-top: 6px;
    color: var(--muted);
}

/* Gallery */

.gallery-section {
    padding: 50px 0;
}

.gallery-section h2 {
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.gallery img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

/* Info */

.info-section {
    padding: 60px 0;
    background: #f9fafb;
}

.lead {
    max-width: 700px;
    color: var(--muted);
}

.benefits {
    margin-top: 20px;
    padding-left: 20px;
}

.benefits li {
    margin-bottom: 10px;
}

/* Footer */

.footer {
    padding: 50px 0;
    background: #111827;
    color: #e5e7eb;
    text-align: center;
}

.footer a {
    color: #f97316;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.promo {
    margin: 30px auto;
    padding: 16px;
    max-width: 420px;
    background: #1f2937;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.copy {
    margin-top: 30px;
    font-size: 13px;
    color: #9ca3af;
}

/* Responsive */

@media (max-width: 600px) {
    .site-title {
        font-size: 26px;
    }
}
