* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: #fff; background: #0a1f14; }
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 4%;
    background: rgba(10, 31, 20, 0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav .logo { font-size: 1.2rem; font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase; }
nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.05em; margin-left: 1.5rem; transition: color 0.3s; }
nav a:hover, nav a.active { color: #fff; }
.page-hero {
    height: 50vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(160deg, #0a2e1d 0%, #1a5c3a 40%, #0d3b24 100%);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 200; letter-spacing: 0.2em; text-transform: uppercase; }
.page-hero p { margin-top: 1rem; opacity: 0.7; font-weight: 300; letter-spacing: 0.1em; }
.content { max-width: 900px; margin: 0 auto; padding: 60px 8%; }
.content h2 { font-size: 1.6rem; font-weight: 300; letter-spacing: 0.1em; margin-bottom: 1.5rem; opacity: 0.9; }
.content p { line-height: 1.9; font-weight: 300; opacity: 0.8; margin-bottom: 1.5rem; font-size: 1.05rem; }
.content blockquote {
    border-left: 2px solid #2d8b5e; padding: 1rem 0 1rem 1.5rem;
    margin: 2rem 0; font-style: italic; opacity: 0.7; font-weight: 300;
}
.img-block {
    border-radius: 12px; overflow: hidden; margin: 2rem 0;
    aspect-ratio: 16/9; position: relative;
}
.img-block::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a5c3a, #0d3b24, #2d8b5e);
}
.img-block::after {
    content: attr(data-label); position: absolute; bottom: 1rem; left: 1.5rem;
    font-size: 0.9rem; opacity: 0.6; letter-spacing: 0.05em;
}
.img-block svg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 120px; height: 120px; opacity: 0.2;
}
footer { text-align: center; padding: 3rem; background: #061a0f; font-size: 0.9rem; opacity: 0.5; letter-spacing: 0.05em; }
.back-link { display: inline-block; margin-bottom: 2rem; color: #2d8b5e; text-decoration: none; font-size: 0.9rem; letter-spacing: 0.05em; }
.back-link:hover { color: #fff; }
