:root {
    --bg: #050608; --bg-alt: #101218; --accent: #f5b400; --text: #f5f5f5; --muted: #a0a4b0; --card: #181b22; --border: 
    #262a33; --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
} *, *::before, *::after {
    box-sizing: border-box; } body { margin: 0; font-family: var(--font-main); background: radial-gradient(circle at top, 
    #151826 0, #050608 55%); color: var(--text);
} /* Header */ .site-header {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; padding: 1rem 5vw; border-bottom: 
    1px solid var(--border); background: rgba(5, 6, 8, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; 
    z-index: 10;
} .logo-wrap {
    display: flex; align-items: center; gap: 0.75rem; } .logo { height: 48px; width: auto; } .brand-text h1 { font-size: 
    1.1rem; margin: 0;
} .brand-text p {
    margin: 0; font-size: 0.85rem; color: var(--muted); } .main-nav { display: flex; gap: 1rem; flex-wrap: wrap; } .main-nav 
a {
    color: var(--muted); text-decoration: none; font-size: 0.95rem; padding-bottom: 0.2rem; border-bottom: 2px solid 
    transparent;
} .main-nav a:hover, .main-nav a.active {
    color: var(--text); border-bottom-color: var(--accent); } /* Layout */ .page-main { padding: 2rem 5vw 4rem; max-width: 
    1200px; margin: 0 auto;
} /* Hero */ .hero {
    display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 2rem; align-items: center; margin-bottom: 
    3rem;
} .hero-text h2 {
    font-size: 2.2rem; margin-bottom: 0.5rem; } .hero-text p { color: var(--muted); max-width: 32rem; } .hero-image img { 
    width: 100%; border-radius: 12px; object-fit: cover; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
} /* Buttons */ .btn-primary, .btn-outline {
    display: inline-flex; align-items: center; justify-content: center; padding: 0.7rem 1.4rem; border-radius: 999px; 
    font-size: 0.95rem; text-decoration: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, 
    background 0.15s ease, color 0.15s ease;
} .btn-primary {
    background: var(--accent); color: #000; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); margin-top: 1rem; } 
.btn-primary:hover {
    transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7); } .btn-outline { border: 1px solid 
    var(--accent); color: var(--accent); background: transparent;
} .btn-outline:hover {
    background: var(--accent); color: #000; } /* Featured shot */ .featured-shot { margin-bottom: 3rem; } .featured-shot h3 
{
    margin-bottom: 1rem; } .featured-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 
    1.5rem; align-items: center;
} .featured-image img {
    width: 100%; border-radius: 12px; object-fit: cover; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6); } .featured-text h4 { 
    margin-top: 0; margin-bottom: 0.5rem;
} .featured-text p {
    color: var(--muted); } /* Portfolio grid */ .portfolio-grid { display: flex; flex-direction: column; gap: 2.5rem; 
    margin-bottom: 3rem;
} .portfolio-section {
    background: var(--card); border-radius: 14px; padding: 1.5rem; border: 1px solid var(--border); } .portfolio-section 
header h3 {
    margin-top: 0; margin-bottom: 0.25rem; } .portfolio-section header p { margin-top: 0; color: var(--muted); } .shots-grid 
{
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1rem; } .shot-card { 
    background: #101218; border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
} .shot-card img {
    width: 100%; height: 180px; object-fit: cover; display: block; } .shot-card figcaption { padding: 0.75rem 0.9rem 0.9rem; 
} .shot-card h4 {
    margin: 0 0 0.25rem; font-size: 0.95rem; } .shot-location { 0;
    font-size: 0.8rem; color: var(--muted); } /* CTA strip */ .cta-strip { display: flex; flex-wrap: wrap; gap: 1rem; 
    align-items: center; justify-content: space-between; padding: 1.5rem; border-radius: 14px; background: 
    linear-gradient(135deg, #181b22, #101218); border: 1px solid var(--border);
} .cta-strip h3 {
    margin: 0 0 0.25rem;
} .cta-strip p {
    margin: 0;
    color: var(--muted); max-width: 32rem; } /* Footer */ .site-footer { padding: 1.5rem 5vw 2rem; border-top: 1px solid 
    var(--border); background: #050608; color: var(--muted); font-size: 0.85rem;
} .footer-contact {
    display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 0.5rem; } .footer-contact a { color: var(--accent); 
    text-decoration: none;
} .footer-contact a:hover {
    text-decoration: underline; } /* Responsive */ @media (max-width: 800px) { .hero, .featured-grid {
        grid-template-columns: 1fr; } .hero { text-align: left; } .site-header { gap: 0.75rem; }
}
