* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #090909;
    color: #f3f3f3;
    font-family: Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(rgba(5,5,5,.45), rgba(5,5,5,.72)),
        url('/assets/img/hero.jpg') center center / cover no-repeat;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 48px;
}

.logo {
    font-size: 14px;
    letter-spacing: 4px;
}

.nav a {
    margin-left: 24px;
    font-size: 13px;
    text-transform: uppercase;
    opacity: .9;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 16vh 24px 0;
    text-align: center;
}

.eyebrow,
.section-label {
    color: #c89b5c;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 18px 0;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 400;
}

.hero-text {
    max-width: 580px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: #c89b5c;
    color: #111;
    font-weight: bold;
}

.section {
    padding: 90px 24px;
}

.section.dark {
    background: #0f0f0f;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.card {
    min-height: 240px;
    border-radius: 24px;
    padding: 24px;
    background: linear-gradient(180deg, #1a1a1a, #111);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: flex-end;
    font-size: 28px;
}

.card.large {
    min-height: 320px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    min-height: 420px;
    border-radius: 28px;
    background: linear-gradient(180deg, #242424, #121212);
    border: 1px solid rgba(255,255,255,.08);
}

.footer {
    padding: 32px 24px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}