/* Palette: Antracite, Build Yellow, White */
:root {
    --primary: #FFB300;
    --dark: #212121;
    --light-grey: #F5F5F5;
    --text: #333333;
    --white: #ffffff;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { background: var(--white); color: var(--text); font-family: var(--font-body); line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; border-radius: 4px; }

/* Header */
.works-header { background: var(--dark); padding: 15px 0; position: sticky; top: 0; z-index: 1000; color: #fff; }
.header-row { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; letter-spacing: 1px; }
.yellow { color: var(--primary); }
.nav-links a { margin-left: 20px; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; color: #ccc; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.btn-cta { background: var(--primary); color: var(--dark) !important; padding: 8px 20px; border-radius: 4px; }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 3px; background: var(--primary); }
.mobile-nav { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--dark); z-index: 2000; display: flex; flex-direction: column; padding: 20px; transition: 0.4s; }
.mobile-nav.active { right: 0; }
.close-nav { align-self: flex-end; color: #fff; font-size: 2rem; background: none; border: none; margin-bottom: 20px; cursor: pointer; }
.mobile-nav nav a { color: #fff; display: block; font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; }

/* Hero */
.hero-works { height: 80vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; }
.hero-content { color: #fff; max-width: 700px; padding-left: 5%; }
.work-tag { border-left: 4px solid var(--primary); padding-left: 15px; font-weight: 700; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-head); font-size: clamp(3rem, 6vw, 5rem); line-height: 1; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ddd; }
.cta-btns { display: flex; gap: 15px; }
.btn-primary { background: var(--primary); color: var(--dark); padding: 15px 35px; font-weight: 700; font-family: var(--font-head); }
.btn-secondary { border: 2px solid #fff; color: #fff; padding: 15px 35px; font-weight: 700; }

/* Grid */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; }
.yellow-bar { width: 60px; height: 5px; background: var(--primary); margin: 10px auto 0; }
.yellow-bar.left { margin: 20px 0; }
.grid-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.s-card { background: var(--light-grey); padding: 40px 20px; text-align: center; transition: 0.3s; }
.s-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.s-icon { font-size: 3rem; margin-bottom: 20px; }

/* Layouts */
.about-flex { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.stats { list-style: none; margin-top: 30px; }
.stats li { margin-bottom: 10px; font-weight: 500; }
.stats strong { color: var(--primary); font-size: 1.5rem; margin-right: 10px; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--light-grey); padding: 50px; }
.works-form input, .works-form select, .works-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; margin-bottom: 15px; font-family: var(--font-body); }
.btn-submit { width: 100%; background: var(--dark); color: #fff; border: none; padding: 15px; font-weight: 700; cursor: pointer; }
.btn-submit:hover { background: var(--primary); color: var(--dark); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card { background: var(--white); padding: 30px; border: 1px solid #eee; border-top: 4px solid #eee; }
.testi-card.highlight { border-top-color: var(--primary); }

.legal-box { max-width: 800px; margin: 0 auto; background: var(--light-grey); padding: 40px; }

/* Footer */
.works-footer { background: var(--dark); color: #888; padding: 60px 0 20px; margin-top: 80px; border-top: 4px solid var(--primary); }
.footer-flex { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }
.f-box h4 { color: #fff; font-family: var(--font-head); }
.f-links a { margin-left: 20px; color: var(--primary); font-weight: 600; }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-panel { position: fixed; bottom: 20px; left: 20px; background: var(--dark); color: #fff; padding: 15px 25px; border-radius: 4px; display: flex; align-items: center; gap: 20px; z-index: 3000; display: none; }
.cookie-panel.active { display: flex; }
.cookie-panel button { background: var(--primary); border: none; padding: 5px 15px; font-weight: 700; cursor: pointer; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .grid-container, .about-flex, .contact-wrapper, .testi-grid, .footer-flex { grid-template-columns: 1fr; text-align: center; }
    .cta-btns { justify-content: center; }
    .footer-flex { flex-direction: column; gap: 20px; }
}