/* =======================================
   Hero
======================================= */

.hero {
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        #111111;
    background-size: 56px 56px;
    color: #ffffff;
    padding: 115px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .78rem;
    font-weight: 800;
    margin-bottom: 24px;
    opacity: .72;
}

.hero h1 {
    font-size: 4.6rem;
    line-height: .95;
    letter-spacing: -0.055em;
    font-weight: 900;
    margin-bottom: 32px;
}

.hero-text {
    font-size: 1.12rem;
    color: #dddddd;
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: 900;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 2px;
    transition: .25s;
}

.btn-primary {
    background: #ffffff;
    color: #111111;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,.7);
    color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #111111;
}

.hero-image {
    height: 560px;
    background: #2a2a2a;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(100%) contrast(115%) brightness(90%);
    -webkit-filter: grayscale(100%) contrast(115%) brightness(90%);
}