/* Palette: Safety Orange, Charcoal, Concrete, Steel */
:root {
    --orange: #FF6600;
    --orange-dark: #CC5200;
    --charcoal: #222222;
    --concrete: #F0F0F0;
    --steel: #555555;
    --white: #FFFFFF;
    
    --font-head: 'Teko', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--concrete);
    color: var(--charcoal);
    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; border-radius: 2px; }

/* Caution Stripe */
.caution-stripe {
    height: 10px;
    background: repeating-linear-gradient(
        45deg,
        var(--charcoal),
        var(--charcoal) 10px,
        var(--orange) 10px,
        var(--orange) 20px
    );
}

/* Header */
.factory-header { background: var(--charcoal); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--white); letter-spacing: 2px; line-height: 1; }
.gear-icon { font-size: 1.5rem; margin: 0 5px; display: inline-block; }

.heavy-nav a { margin-left: 25px; font-family: var(--font-head); font-size: 1.4rem; color: #ccc; text-transform: uppercase; font-weight: 500; }
.heavy-nav a:hover, .heavy-nav a.active { color: var(--orange); }

.btn-orange { background: var(--orange); color: var(--white); padding: 10px 25px; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-left: 30px; text-transform: uppercase; border: 2px solid var(--orange); }
.btn-orange:hover { background: var(--white); color: var(--orange); }

.mobile-menu-btn { display: none; background: transparent; border: 2px solid var(--orange); color: var(--orange); font-family: var(--font-head); font-size: 1.2rem; padding: 5px 15px; cursor: pointer; }

/* Mobile Drawer */
.mobile-drawer { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--charcoal); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.3s; border-left: 5px solid var(--orange); }
.mobile-drawer.active { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: 1px solid var(--white); color: var(--white); padding: 5px 15px; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; }
.mobile-drawer a { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); margin: 10px 0; text-transform: uppercase; }
.mobile-drawer a:hover { color: var(--orange); }

@media (max-width: 900px) {
    .heavy-nav, .btn-orange { display: none; }
    .mobile-menu-btn { display: block; }
}

/* Hero */
.hero-factory { 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.8); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; padding: 40px; border: 2px solid var(--orange); background: rgba(0,0,0,0.5); }

.badge-industrial { background: var(--orange); color: var(--white); padding: 5px 15px; font-family: var(--font-head); font-size: 1.2rem; display: inline-block; margin-bottom: 20px; letter-spacing: 1px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 0.9; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; color: #ddd; }

.btn-row { display: flex; justify-content: center; gap: 20px; }
.btn-orange-big { background: var(--orange); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.5rem; text-transform: uppercase; border: none; cursor: pointer; transition: 0.3s; }
.btn-orange-big:hover { background: var(--orange-dark); transform: scale(1.05); }
.btn-steel { background: var(--steel); color: var(--white); padding: 15px 40px; font-family: var(--font-head); font-size: 1.5rem; text-transform: uppercase; transition: 0.3s; }
.btn-steel:hover { background: #444; }

/* Stats Bar */
.stats-bar { background: var(--white); padding: 30px 0; border-bottom: 2px solid #ddd; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 3rem; color: var(--charcoal); line-height: 1; }
.stat span { font-size: 0.9rem; font-weight: 700; color: var(--orange); }

/* Practice Areas */
.section-title h2 { font-family: var(--font-head); font-size: 3rem; color: var(--charcoal); margin-bottom: 5px; line-height: 1; }
.orange-bar { width: 80px; height: 6px; background: var(--orange); margin: 0 auto 40px; }
.orange-bar.left { margin: 0 0 30px 0; }
.center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.method-card { background: var(--white); padding: 40px; border: 1px solid #ddd; transition: 0.3s; text-align: center; border-bottom: 5px solid transparent; }
.method-card:hover { transform: translateY(-5px); border-bottom-color: var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.method-card h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; color: var(--charcoal); }

/* Practice List (Practices Page) */
.course-list { display: flex; flex-direction: column; gap: 30px; max-width: 900px; margin: 0 auto; }
.course-card { background: var(--white); border: 1px solid #ddd; border-left: 8px solid var(--steel); display: flex; flex-direction: column; }
.course-card.highlight { border-left-color: var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.c-header { background: #f9f9f9; padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
.c-header h3 { font-family: var(--font-head); font-size: 1.8rem; margin: 0; color: var(--charcoal); }
.duration { font-weight: 700; color: var(--orange); background: #fff; padding: 2px 10px; border: 1px solid var(--orange); font-size: 0.8rem; }
.c-body { padding: 30px; }
.specs { list-style: none; margin: 20px 0; padding: 0; font-family: var(--font-head); font-size: 1.2rem; color: var(--steel); }
.link-orange { color: var(--orange); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }

/* About Split */
.about-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1; margin-bottom: 20px; }
.mission-box { background: var(--charcoal); color: var(--white); padding: 20px; border-left: 5px solid var(--orange); margin-top: 30px; }
.mission-box strong { color: var(--orange); font-family: var(--font-head); font-size: 1.4rem; display: block; margin-bottom: 5px; }
.about-visual img { border: 10px solid var(--white); box-shadow: 10px 10px 0 var(--orange); }

/* Contact Form */
.contact-panel { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border: 2px solid var(--charcoal); }
.panel-header { text-align: center; margin-bottom: 40px; }
.panel-header h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; }
.office-loc { margin-top: 20px; background: var(--concrete); padding: 15px; font-weight: 700; color: var(--steel); }
.office-loc span { display: block; margin: 5px 0; }

.heavy-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-wrap { margin-bottom: 20px; }
.input-wrap label { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--charcoal); margin-bottom: 5px; }
.input-wrap input, .input-wrap select, .input-wrap textarea { width: 100%; padding: 12px; border: 2px solid #ddd; background: #fafafa; font-family: var(--font-body); font-size: 1rem; }
.input-wrap input:focus, .input-wrap select:focus, .input-wrap textarea:focus { border-color: var(--orange); outline: none; }
.full { width: 100%; border: none; padding: 15px; font-size: 1.3rem; margin-top: 10px; cursor: pointer; }

/* Legal */
.legal-block { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; }
.legal-block h1 { font-family: var(--font-head); font-size: 3rem; }

/* Footer */
.factory-footer { background: var(--charcoal); color: #888; padding: 60px 0 20px; margin-top: 100px; border-top: 5px solid var(--orange); }
.footer-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-col h4 { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #ccc; }
.f-links a:hover { color: var(--orange); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #333; padding-top: 20px; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .btn-row { flex-direction: column; }
    .grid-3, .about-split, .heavy-form .form-row { grid-template-columns: 1fr; }
    .stats-flex { flex-direction: column; gap: 20px; }
    .footer-row { flex-direction: column; gap: 20px; text-align: center; }
}