@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --black: #070707;
    --black-2: #101010;
    --red: #ed1721;
    --red-dark: #8d0d12;
    --yellow: #ffc400;
    --cream: #e8dfd0;
    --muted: #aaa6a0;
    --line: #292929;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--black);
    color: #fff;
    font-family: "Oswald", Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    opacity: .08;
    background-image:
        radial-gradient(#fff 0.6px, transparent 0.7px),
        radial-gradient(#fff 0.5px, transparent 0.6px);
    background-size: 13px 13px, 19px 19px;
    background-position: 0 0, 7px 9px;
    mix-blend-mode: screen;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 94px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7,7,7,.94);
    border-bottom: 1px solid #262626;
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.brand img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: .86;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 25px;
    letter-spacing: .5px;
}

.brand strong { color: var(--red); }

.nav {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav a {
    position: relative;
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .7px;
    padding: 38px 0 34px;
}

.nav a:hover, .nav a.active { color: var(--red); }

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--red);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px;
    background: #fff;
}

.hero {
    min-height: calc(100vh - 94px);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 27%, rgba(90,90,90,.17), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(237,23,33,.10), transparent 38%),
        #090909;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 55vw;
    height: 80%;
    top: 8%;
    opacity: .09;
    pointer-events: none;
    background: url("assets/logo.png") center/contain no-repeat;
    filter: saturate(1.4);
}
.hero::before { left: -31vw; transform: rotate(-9deg) scale(1.35); }
.hero::after { right: -31vw; transform: rotate(9deg) scale(1.35); }

.hero-content {
    width: min(1100px, 92%);
    padding: 45px 0 65px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-logo {
    width: min(300px, 54vw);
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 15px 22px rgba(0,0,0,.7));
}

.title {
    margin-top: -2px;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(58px, 8vw, 108px);
    line-height: .76;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 5px 0 rgba(0,0,0,.35);
}
.title div:first-child { color: #e7e7e7; }
.title div:last-child { color: var(--red); }

.motto {
    margin-top: 28px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 8px;
    color: #ddd;
}
.motto i { color: var(--yellow); font-style: normal; margin: 0 7px; }

.red-line {
    width: 110px;
    height: 4px;
    background: var(--red);
    margin: 26px auto 27px;
}

.hero h1 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: 4px;
    font-weight: 800;
}
.lead {
    margin: 10px 0 38px;
    color: #aaa;
    font-size: 18px;
    line-height: 1.55;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.card {
    min-height: 178px;
    padding: 23px 15px;
    border: 1px solid #383838;
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(20,20,20,.9), rgba(8,8,8,.92));
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
    transform: translateY(-5px);
    border-color: #6b2225;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.icon {
    height: 42px;
    font-size: 35px;
    line-height: 42px;
    color: var(--red);
}
.icon.yellow { color: var(--yellow); }
.card h2 {
    margin: 9px 0 8px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    letter-spacing: 2px;
}
.card p {
    margin: 0;
    color: #a9a9a9;
    font-size: 15px;
    line-height: 1.4;
}

.placeholder-section {
    min-height: 45vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 70px 20px;
    border-top: 1px solid #242424;
    background: #090909;
}
.placeholder-section.dark-alt { background: #0e0e0e; }
.placeholder-section > div { max-width: 750px; }
.eyebrow {
    color: var(--red);
    letter-spacing: 5px;
    font-weight: 700;
}
.placeholder-section h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    margin: 14px 0;
}
.placeholder-section p { color: #999; font-size: 19px; }

.site-footer {
    min-height: 116px;
    padding: 30px 7%;
    border-top: 1px solid #292929;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    background: #080808;
    position: relative;
}
.site-footer::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 7px;
    background: var(--red);
}
.site-footer p { margin: 0; color: #888; font-size: 13px; }
.socials { display: flex; gap: 24px; }
.socials a {
    color: #eee;
    font-size: 25px;
    text-decoration: none;
}
.socials a:hover { color: var(--red); }
.footer-tag {
    justify-self: end;
    text-align: right;
    color: #ddd;
    letter-spacing: 5px;
    font-size: 12px;
}
.footer-tag div {
    width: 50px;
    height: 3px;
    background: var(--red);
    margin: 10px 0 0 auto;
}

@media (max-width: 850px) {
    .site-header { height: 78px; padding: 0 5%; }
    .brand img { width: 52px; height: 52px; }
    .brand span { font-size: 20px; }
    .menu-toggle { display: block; }
    .nav {
        position: absolute;
        left: 0; right: 0; top: 78px;
        display: none;
        flex-direction: column;
        gap: 0;
        background: rgba(8,8,8,.98);
        border-bottom: 1px solid #333;
    }
    .nav.open { display: flex; }
    .nav a { width: 100%; padding: 18px 7%; }
    .nav a.active::after { display: none; }
    .hero-content { padding-top: 32px; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .motto { letter-spacing: 4px; }
    .site-footer { grid-template-columns: 1fr; text-align: center; }
    .socials { justify-content: center; }
    .footer-tag { justify-self: center; }
}

@media (max-width: 520px) {
    .hero-logo { width: 230px; }
    .title { font-size: 52px; }
    .motto { font-size: 12px; letter-spacing: 3px; }
    .cards { grid-template-columns: 1fr; }
    .card { min-height: 145px; }
}
