/* Palette: Brick Red, Asphalt, Concrete, Steel */
:root {
    --brick: #A94442;
    --brick-dark: #8a3331;
    --asphalt: #222222;
    --concrete: #F0F0F0;
    --steel: #555555;
    --white: #FFFFFF;
    
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--concrete);
    color: var(--asphalt);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(50%); }

/* Header */
.urban-header { background: var(--asphalt); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 4px solid var(--brick); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; color: var(--white); font-weight: 700; letter-spacing: 2px; }
.anchor-icon { color: var(--brick); margin: 0 5px; font-size: 1.5rem; }

.urban-nav a { margin-left: 30px; font-family: var(--font-head); font-weight: 500; color: #BBB; font-size: 1.1rem; text-transform: uppercase; }
.urban-nav a:hover, .urban-nav a.active { color: var(--brick); border-bottom: 2px solid var(--brick); }

.lang-switch { margin-left: 20px; color: var(--steel); font-weight: 700; font-family: var(--font-head); border: 1px solid var(--steel); padding: 2px 5px; }

.menu-btn { display: none; background: transparent; border: 2px solid var(--white); color: var(--white); font-family: var(--font-head); font-weight: 700; padding: 5px 15px; cursor: pointer; }

/* Mobile Overlay */
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--asphalt); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-overlay.active { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 2rem; color: var(--brick); cursor: pointer; }
.mobile-overlay a { font-family: var(--font-head); font-size: 3rem; color: var(--white); margin: 10px 0; text-transform: uppercase; }
.mobile-overlay a:hover { color: var(--brick); }

@media (max-width: 900px) {
    .urban-nav, .lang-switch { display: none; }
    .menu-btn { display: block; }
}

/* Hero */
.hero-urban { height: 85vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(34, 34, 34, 0.7); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; }

.graffiti-tag { font-family: var(--font-head); background: var(--brick); color: var(--white); padding: 5px 15px; font-size: 1rem; transform: rotate(-2deg); display: inline-block; margin-bottom: 20px; font-weight: 700; }
.hero-content h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
.hero-content p { font-size: 1.4rem; margin-bottom: 40px; font-weight: 400; color: #ddd; }

.hero-actions { display: flex; justify-content: center; gap: 20px; }
.btn-brick { background: var(--brick); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.2rem; border: none; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-brick:hover { background: var(--brick-dark); transform: scale(1.05); }
.btn-metal { background: transparent; border: 3px solid var(--white); color: var(--white); padding: 12px 40px; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
.btn-metal:hover { background: var(--white); color: var(--asphalt); }

/* Steps */
.section-head h2 { font-family: var(--font-head); font-size: 3rem; text-transform: uppercase; margin-bottom: 10px; color: var(--asphalt); }
.brick-line { width: 100px; height: 8px; background: var(--brick); margin: 0 auto 50px; }
.brick-line.left { margin: 0 0 30px 0; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { background: var(--white); padding: 40px; border: 1px solid #ddd; position: relative; transition: 0.3s; }
.step-card:hover { box-shadow: 10px 10px 0 var(--asphalt); transform: translate(-5px, -5px); }
.step-num { font-family: var(--font-head); font-size: 4rem; color: #eee; font-weight: 700; position: absolute; top: 10px; right: 20px; line-height: 1; }
.step-card h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 15px; position: relative; z-index: 2; }
.step-card p { position: relative; z-index: 2; }

/* Vibe Banner */
.vibe-banner { background: var(--brick); color: var(--white); padding: 60px 0; text-align: center; font-family: var(--font-head); font-size: 2rem; text-transform: uppercase; margin-top: 50px; }

/* Services Packages */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.pkg-card { background: var(--white); border: 2px solid var(--asphalt); padding: 0; text-align: center; transition: 0.3s; }
.pkg-card:hover { transform: scale(1.02); }
.pkg-card.featured { border-color: var(--brick); transform: scale(1.05); z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.pkg-header { background: var(--asphalt); color: var(--white); padding: 30px 0; }
.pkg-card.featured .pkg-header { background: var(--brick); }
.pkg-header h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; }
.price { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; }
.pkg-card ul { list-style: none; padding: 30px; text-align: left; }
.pkg-card li { border-bottom: 1px solid #eee; padding: 10px 0; font-weight: 600; }
.pkg-card li:last-child { border: none; }
.btn-metal.small, .btn-brick.small { width: 80%; display: inline-block; margin-bottom: 30px; }
.btn-metal.small { background: var(--asphalt); border: none; }
.btn-metal.small:hover { background: var(--steel); color: var(--white); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-txt h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1; margin-bottom: 20px; }
.manifesto { background: var(--asphalt); color: var(--white); padding: 30px; margin-top: 30px; border-left: 5px solid var(--brick); }
.manifesto h4 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; color: var(--brick); }
.about-img img { border: 10px solid var(--white); box-shadow: 15px 15px 0 var(--asphalt); }

/* Contact */
.contact-box { max-width: 700px; margin: 0 auto; background: var(--white); padding: 50px; border: 4px solid var(--asphalt); }
.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; }
.contact-info { margin-top: 20px; font-weight: 700; display: flex; justify-content: center; gap: 30px; color: var(--brick); font-family: var(--font-head); font-size: 1.2rem; }

.industrial-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.industrial-form input, .industrial-form select, .industrial-form textarea { width: 100%; background: var(--concrete); border: 2px solid #ddd; padding: 15px; font-family: var(--font-head); font-size: 1.1rem; color: var(--asphalt); }
.industrial-form input:focus, .industrial-form select:focus, .industrial-form textarea:focus { border-color: var(--asphalt); outline: none; }
.full { width: 100%; margin-top: 10px; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border: 1px solid var(--asphalt); }
.legal-content h1 { font-family: var(--font-head); }

/* Footer */
.urban-footer { background: var(--asphalt); color: #888; padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-head); color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
.f-links a { margin-left: 20px; font-family: var(--font-head); color: #888; transition: 0.3s; }
.f-links a:hover { color: var(--brick); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #333; padding-top: 20px; font-family: var(--font-head); letter-spacing: 1px; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .steps-grid, .packages-grid, .about-grid, .industrial-form .form-row { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .contact-info { flex-direction: column; gap: 10px; }
}