:root {
    --orange: #ff6a00;
    --dark-grey: #1a1a1a;
    --beton: #3d3d3d;
    --light-beton: #f0f0f0;
    --white: #ffffff;
    --black: #000000;
    
    --font-head: 'Staatliches', cursive;
    --font-body: 'Roboto Condensed', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.4;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Nav */
.core-nav { padding: 25px 0; background: rgba(0,0,0,0.9); position: fixed; top: 0; width: 100%; z-index: 1000; border-bottom: 2px solid var(--orange); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 2rem; letter-spacing: 2px; }
.orange { color: var(--orange); }

.nav-links a { font-family: var(--font-head); font-size: 1.2rem; margin-left: 25px; color: #888; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.btn-cta { background: var(--orange); color: var(--white) !important; padding: 5px 15px; }

/* Mobile Menu */
.menu-btn { display: none; background: none; border: 1px solid var(--orange); color: var(--orange); font-family: var(--font-head); padding: 5px 10px; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; background: var(--dark-grey); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.3s; }
.mobile-menu.active { left: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; background: none; border: none; color: var(--white); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 3rem; margin: 10px 0; }

/* Hero */
.hero-box {
    height: 90vh; display: flex; align-items: center;
    background-image: linear-gradient(to right, #000, transparent), url('https://images.pexels.com/photos/949126/pexels-photo-949126.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover; background-position: center;
}
.hero-content { padding-top: 100px; }
.skew-text { font-family: var(--font-head); font-size: 6rem; line-height: 0.9; transform: skewX(-5deg); }
.highlight { color: var(--orange); -webkit-text-stroke: 2px var(--white); }
.hero-box p { font-size: 1.5rem; max-width: 500px; margin: 30px 0; font-weight: bold; }

.btn-orange { background: var(--orange); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.5rem; display: inline-block; margin-right: 20px; }
.btn-white { border: 2px solid var(--white); color: var(--white); padding: 13px 40px; font-family: var(--font-head); font-size: 1.5rem; display: inline-block; }

/* Masonry Grid */
.section-padding { padding: 100px 0; }
.masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 20px; }
.grid-item { position: relative; overflow: hidden; border: 1px solid #333; }
.grid-item.large { grid-column: span 2; grid-row: span 2; background-image: url('https://images.pexels.com/photos/1552249/pexels-photo-1552249.jpeg?auto=compress&cs=tinysrgb&w=800'); background-size: cover; }
.grid-item.medium { grid-column: span 2; background: var(--beton); }
.grid-item.accent { background: var(--orange); color: var(--black); }
.grid-item:not(.large):not(.accent) { background: #222; }

.item-overlay { padding: 30px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.label { background: var(--orange); color: var(--white); padding: 2px 8px; font-weight: bold; font-size: 0.8rem; width: fit-content; margin-bottom: 10px; }
.grid-item h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 5px; }

/* About Split */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.orange-bar { width: 60px; height: 5px; background: var(--orange); margin: 20px 0; }
.img-side img { width: 100%; filter: grayscale(1); border: 1px solid var(--orange); }
.specs { list-style: none; margin-top: 30px; font-family: var(--font-head); color: var(--orange); font-size: 1.5rem; }

/* Success */
.feedback-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pr-card { background: #111; padding: 40px; border-bottom: 4px solid #333; text-align: center; }
.pr-card.highlight { border-bottom-color: var(--orange); }
.stat { font-family: var(--font-head); font-size: 3rem; color: var(--orange); margin-bottom: 15px; }

/* Form */
.form-card { background: var(--white); color: var(--black); padding: 60px; border-left: 15px solid var(--orange); }
.form-header h2 { font-family: var(--font-head); font-size: 3rem; }
.core-form { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.core-form input, .core-form select, .core-form textarea { flex: 1; padding: 15px; border: 2px solid #ddd; font-family: var(--font-body); font-weight: bold; }
.btn-submit { background: var(--black); color: var(--white); border: none; padding: 20px; font-family: var(--font-head); font-size: 1.5rem; cursor: pointer; }
.btn-submit:hover { background: var(--orange); }

/* Legal */
.legal-content h1 { font-family: var(--font-head); font-size: 4rem; color: var(--orange); }
.mt-40 { margin-top: 40px; }

/* Footer */
.core-footer { padding: 80px 0 0; border-top: 1px solid #333; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 50px; }
.footer-grid h4 { font-family: var(--font-head); color: var(--orange); }
.bottom-bar { background: var(--black); padding: 20px 0; text-align: center; border-top: 1px solid #111; font-size: 0.8rem; color: #555; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-btn { display: block; }
    .hero-box h1 { font-size: 3rem; }
    .masonry-grid, .about-split, .feedback-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
    .grid-item.large, .grid-item.medium { grid-column: span 1; grid-row: span 1; }
}