* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #eee7dc;
    color: #0b1e3a;
}

.site-header {
    width: 100%;
    height: 70px;
    background-color: #e9e0d4;
    border-bottom: 1px solid rgba(11, 30, 58, 0.15);
}

.header-container {
    width: calc(100% - 80px);
    max-width: 1250px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: 32px;
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-navigation a {
    color: #26344a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
}

.main-navigation a:hover {
    color: #a5583c;
}

.header-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 20px;

    background-color: #0b1e3a;
    border: 1px solid #0b1e3a;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;

    text-decoration: none;
    text-transform: uppercase;
}

.header-contact-button:hover {
    background-color: transparent;
    color: #0b1e3a;
}

.hero-section {
    min-height: calc(100vh - 70px);
    padding: 75px 0;
    background-color: #eee7dc;

    background-image:
        linear-gradient(
            rgba(11, 30, 58, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 30, 58, 0.035) 1px,
            transparent 1px
        );

    background-size: 64px 64px;
}

.hero-container {
    width: calc(100% - 80px);
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 35px;

    color: #667080;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-number {
    color: #a5583c;
}

.hero-line {
    width: 32px;
    height: 1px;
    background-color: rgba(11, 30, 58, 0.25);
}

.hero-title {
    margin: 0;

    color: #0b1e3a;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 7vw, 115px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -4px;
}

.hero-title em {
    color: #a5583c;
    font-weight: 400;
}

.hero-panel {
    padding: 30px;
    background-color: rgba(222, 211, 198, 0.75);
    border: 1px solid rgba(11, 30, 58, 0.12);
    box-shadow: 0 25px 55px rgba(11, 30, 58, 0.13);
}

.hero-image-wrapper {
    padding: 18px;
    background-color: #f6f0e8;
}

.hero-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.hero-stat {
    min-height: 72px;
    padding: 14px;

    background-color: rgba(11, 30, 58, 0.08);
    border: 1px solid rgba(11, 30, 58, 0.10);
}

.hero-stat-label {
    display: block;
    margin-bottom: 10px;

    color: #747b85;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-stat strong {
    color: #0b1e3a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 950px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(60px, 12vw, 100px);
    }
}

@media (max-width: 650px) {
    .hero-section {
        padding: 45px 0;
    }

    .hero-container {
        width: calc(100% - 36px);
        gap: 45px;
    }

    .hero-title {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}