:root {
    --forge-grey: #212121;
    --amber: #FFC107;
    --matte-black: #000000;
    --panel-dark: #121212;
    --text-color: #ECEFF1;
    
    --font-heading: 'Saira Stencil One', cursive;
    --font-body: 'Oswald', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--matte-black);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.5;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Warning Tape */
.warning-tape { background: var(--amber); color: var(--matte-black); text-align: center; padding: 5px 0; font-weight: 700; font-size: 0.9rem; letter-spacing: 2px; overflow: hidden; white-space: nowrap; }

/* Header */
.forge-header { background: rgba(18, 18, 18, 0.95); padding: 20px 0; border-bottom: 2px solid var(--amber); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; color: var(--text-color); letter-spacing: 1px; }
.amber { color: var(--amber); }
.icon { font-size: 1.5rem; margin-left: 10px; }

.industrial-nav a { margin-left: 25px; font-weight: 500; font-size: 1.1rem; color: #888; text-transform: uppercase; }
.industrial-nav a:hover, .industrial-nav a.active { color: var(--amber); text-shadow: 0 0 10px rgba(255, 193, 7, 0.5); }

.btn-amber { background: transparent; border: 2px solid var(--amber); color: var(--amber) !important; padding: 10px 25px; font-weight: 700; }
.btn-amber:hover { background: var(--amber); color: var(--matte-black) !important; box-shadow: 0 0 20px var(--amber); }

/* Mobile Menu */
.mobile-btn { display: none; font-size: 2rem; color: var(--amber); cursor: pointer; letter-spacing: -3px; font-weight: 900; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--forge-grey); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; border-left: 5px solid var(--amber); }
.mobile-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: 2px solid var(--amber); color: var(--amber); font-size: 1.5rem; width: 40px; height: 40px; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 2.5rem; margin: 15px 0; color: var(--text-color); }

/* Hero */
.hero-forge { height: 90vh; background-size: cover; background-position: center; position: relative; }
.hero-mesh { width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 100%); background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #000 2px, #000 4px); background-size: 100% 4px; display: flex; align-items: center; }
.hero-content { margin-left: 10%; max-width: 700px; border-left: 5px solid var(--amber); padding-left: 30px; }
.build-no { background: var(--amber); color: var(--matte-black); padding: 2px 10px; font-weight: 700; font-family: monospace; display: inline-block; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-heading); font-size: 5rem; line-height: 0.9; margin-bottom: 20px; color: var(--text-color); text-transform: uppercase; }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; color: #ccc; }

.cta-row { display: flex; gap: 15px; }
.btn-primary { background: var(--amber); color: var(--matte-black); padding: 15px 30px; font-weight: 700; font-size: 1.2rem; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); transition: 0.3s; }
.btn-primary:hover { background: #fff; }
.btn-secondary { background: transparent; border: 1px solid #fff; color: #fff; padding: 15px 30px; font-weight: 700; font-size: 1.2rem; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); transition: 0.3s; }
.btn-secondary:hover { background: #fff; color: #000; }

/* Capabilities */
.capabilities { background: var(--forge-grey); padding: 50px 0; border-bottom: 1px solid #333; }
.cap-grid { display: flex; justify-content: space-around; text-align: center; gap: 20px; flex-wrap: wrap; }
.cap-card { background: var(--panel-dark); padding: 30px; border: 1px solid #333; flex: 1; min-width: 250px; transition: 0.3s; }
.cap-card:hover { border-color: var(--amber); transform: translateY(-5px); }
.cap-card.active { border-bottom: 4px solid var(--amber); }
.icon-box { font-size: 3rem; margin-bottom: 15px; }
.cap-card h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-color); margin-bottom: 10px; }
.cap-card p { color: #888; font-size: 0.95rem; }

/* Teaser & Services */
.section-title { margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-heading); font-size: 3rem; color: var(--text-color); margin-bottom: 5px; }
.amber-bar { width: 100px; height: 5px; background: var(--amber); }

.teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.teaser-item { position: relative; overflow: hidden; border: 2px solid #333; }
.teaser-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(100%); }
.teaser-item:hover img { filter: grayscale(0%); transform: scale(1.05); }
.teaser-info { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.8); padding: 20px; border-top: 1px solid var(--amber); }
.teaser-info h4 { font-family: var(--font-heading); color: var(--amber); margin: 0; font-size: 1.5rem; }
.teaser-info span { color: #fff; font-size: 0.8rem; text-transform: uppercase; }

.service-list { display: flex; flex-direction: column; gap: 50px; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; background: var(--panel-dark); padding: 30px; border: 1px solid #333; }
.service-row.reverse { direction: rtl; }
.service-row.reverse .s-text { direction: ltr; }
.s-img img { width: 100%; border: 2px solid var(--amber); filter: contrast(1.1); }
.s-text h3 { font-family: var(--font-heading); font-size: 2rem; color: var(--amber); margin-bottom: 20px; }
.s-text p { font-size: 1.1rem; color: #ccc; margin-bottom: 20px; }
.specs { list-style: none; padding: 0; }
.specs li { color: #888; margin-bottom: 5px; font-weight: 500; font-family: monospace; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.gallery-card { background: var(--panel-dark); border: 1px solid #333; }
.g-img { position: relative; height: 300px; overflow: hidden; }
.g-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-card:hover .g-img img { transform: scale(1.1); }
.g-tag { position: absolute; top: 10px; right: 10px; background: var(--amber); color: #000; padding: 5px 10px; font-weight: 700; font-size: 0.8rem; }
.g-desc { padding: 20px; }
.g-desc h4 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-bottom: 5px; }
.g-desc p { color: #888; font-size: 0.9rem; margin: 0; }

/* Contact & Forms */
.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; background: var(--panel-dark); border: 2px solid #333; }
.info-panel { background: var(--forge-grey); padding: 50px; border-right: 5px solid var(--amber); }
.info-panel h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--amber); margin-bottom: 20px; }
.info-item { margin-top: 30px; }
.info-item strong { color: var(--amber); font-family: var(--font-heading); font-size: 1.2rem; display: block; margin-bottom: 5px; }

.forge-form { padding: 50px; }
.form-title { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 30px; border-bottom: 1px solid #444; padding-bottom: 10px; }
.input-grp { margin-bottom: 20px; }
.forge-form input, .forge-form select, .forge-form textarea { width: 100%; padding: 15px; background: #000; border: 1px solid #444; color: var(--amber); font-family: var(--font-body); font-size: 1.1rem; outline: none; transition: 0.3s; text-transform: uppercase; }
.forge-form input:focus, .forge-form textarea:focus { border-color: var(--amber); }
.btn-submit { width: 100%; background: var(--amber); color: #000; border: none; padding: 15px; font-weight: 700; font-size: 1.5rem; font-family: var(--font-heading); cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #fff; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; background: var(--panel-dark); padding: 50px; border: 1px solid #333; }
.legal-text h1 { font-family: var(--font-heading); color: var(--amber); }
.legal-text h3 { color: #fff; margin-top: 30px; font-family: var(--font-heading); }

/* Footer */
.forge-footer { background: #000; padding: 60px 0 20px; margin-top: 80px; border-top: 5px solid var(--amber); }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { font-family: var(--font-heading); font-size: 2rem; color: var(--text-color); margin-bottom: 5px; }
.f-links a { color: #666; margin-left: 20px; font-weight: 700; }
.f-links a:hover { color: var(--amber); }
.copyright { text-align: center; color: #444; font-size: 0.8rem; text-transform: uppercase; }

/* Cookie */
.cookie-panel { position: fixed; bottom: 0; width: 100%; background: var(--amber); padding: 15px; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 9999; transform: translateY(100%); transition: 0.5s; }
.cookie-panel.active { transform: translateY(0); }
.cookie-panel p { color: #000; font-weight: 700; margin: 0; }
.cookie-panel button { background: #000; color: var(--amber); border: none; padding: 5px 20px; font-weight: 700; cursor: pointer; }

@media (max-width: 900px) {
    .industrial-nav { display: none; }
    .mobile-btn { display: block; }
    .hero-content h1 { font-size: 3.5rem; }
    .teaser-grid, .service-row, .gallery-grid, .contact-box, .footer-content, .cap-grid { grid-template-columns: 1fr; flex-direction: column; }
    .service-row.reverse { direction: ltr; }
    .info-panel { border-right: none; border-bottom: 5px solid var(--amber); }
    .footer-content { text-align: center; gap: 20px; }
}