/* ═══════════════════════════════════════════════
   LandTank Web – Base Styles
   ═══════════════════════════════════════════════ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--lt-charcoal);
    background: var(--lt-cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lt-green); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--lt-green-dark); }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); color: var(--lt-anthracite); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: var(--text-hero); font-weight: 800; }
h2 { font-size: var(--text-4xl); font-weight: 700; }
h3 { font-size: var(--text-2xl); font-weight: 700; }
h4 { font-family: var(--font-body); font-size: var(--text-xl); font-weight: 600; color: var(--lt-anthracite); }
p { margin-bottom: var(--space-md); }
.accent-text { font-family: var(--font-accent); font-style: italic; color: var(--lt-green); }
.subtitle { font-size: var(--text-lg); color: var(--lt-gray); line-height: 1.7; max-width: 600px; }
.section-label {
    font-size: var(--text-xs); font-weight: 700; color: var(--lt-green);
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: var(--space-sm);
}

/* Container */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--space-lg); }

/* Sections */
.section { padding: var(--space-4xl) 0; }
.section-sm { padding: var(--space-3xl) 0; }
.section-dark { background: var(--lt-anthracite); color: var(--lt-white); }
.section-dark h2, .section-dark h3 { color: var(--lt-white); }
.section-dark .subtitle { color: rgba(255,255,255,0.65); }
.section-dark .section-label { color: var(--lt-green-light); }
.section-white { background: var(--lt-white); }
.section-cream { background: var(--lt-cream); }

.section-header { text-align: center; margin-bottom: var(--space-3xl); }
.section-header .subtitle { margin: var(--space-md) auto 0; }

/* Grid */
.grid { display: grid; gap: var(--space-lg); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

/* Flex */
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: var(--text-3xl); }
    h2 { font-size: var(--text-2xl); }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .section { padding: var(--space-3xl) 0; }
}
@media (max-width: 640px) {
    h1 { font-size: var(--text-2xl); }
    h2 { font-size: var(--text-xl); }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: var(--space-2xl) 0; }
    .container { padding: 0 var(--space-md); }
}
