/* WOLFE WORX - INDUSTRIAL MASTER STYLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Krona+One&display=swap');

:root {
    --brand-red: #e60000;
    --matte-black: #050505;
    --text-muted: #a0a0a0;
    --nav-height: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--matte-black); 
    color: #fff; 
    line-height: 1.6;
    /* This setting prevents text from appearing blurry/thin */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Typography */
.hero-title {
    font-family: 'Krona One', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.hero-outline {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
    color: transparent;
}

/* Service Menu Links */
.service-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.service-link:hover { 
    color: var(--brand-red); 
    transform: translateX(10px); 
}