:root {
    --accent: #e8794a;
    --accent-hover: #d76838;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.92);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: #1a1410;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(120, 70, 50, 0.55) 0%, rgba(90, 70, 55, 0.45) 50%, rgba(140, 90, 60, 0.55) 100%),
        url('/images/soldier-oldtruck.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    filter: saturate(0.85);
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.0) 70%, rgba(0,0,0,0.25) 100%);
}

/* HEADER */
.site-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 36px;
    gap: 24px;
}

.nav-left {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.nav-left a {
    transition: opacity 0.2s ease;
}

.nav-left a:hover { opacity: 0.7; }

.brand {
    display: block;
    line-height: 0;
}

.brand img {
    height: 56px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    color: var(--text);
    transition: opacity 0.2s ease;
}

.icon-btn:hover { opacity: 0.7; }

.cart {
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}

.cart-count { line-height: 1; }

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px 100px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

h1 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-weight: 500;
    font-size: clamp(2rem, 5.5vw, 4.25rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    margin-bottom: 28px;
    max-width: 16ch;
}

.lede {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 56ch;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.body {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    max-width: 60ch;
    color: var(--muted);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

/* SHOP BUTTON */
.shop-btn {
    position: absolute;
    right: 36px;
    bottom: 36px;
    z-index: 2;
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.shop-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        padding: 16px 18px;
        gap: 14px;
    }

    .nav-left {
        gap: 14px;
        font-size: 12px;
    }

    .brand img { height: 42px; }

    .nav-right { gap: 14px; }

    .hero-content {
        padding: 30px 20px 120px;
    }

    h1 { margin-bottom: 20px; }

    .shop-btn {
        right: 50%;
        bottom: 28px;
        transform: translateX(50%);
        padding: 12px 32px;
    }

    .shop-btn:hover { transform: translateX(50%) translateY(-1px); }
}

@media (max-width: 480px) {
    .nav-left a:nth-child(2),
    .nav-left a:nth-child(3) { display: none; }

    .nav-left a:first-child { font-size: 13px; }
}
