* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #003b2b;
    color: #fff;
}

.page {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.hero {
    width: 100%;
    background: #003b2b;
    line-height: 0;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.construction {
    min-height: 280px;
    padding: 42px 20px 55px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 169, 64, .12), transparent 28%),
        linear-gradient(180deg, #003b2b 0%, #00291f 100%);
    border-top: 2px solid #d8ad45;
    position: relative;
}

.construction::before,
.construction::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(216, 173, 69, .28);
}

.construction::before { top: 7px; }
.construction::after { bottom: 8px; }

.construction-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2b84e;
    border-radius: 50%;
    color: #e2b84e;
    font-size: 32px;
    box-shadow: 0 0 24px rgba(226, 184, 78, .16);
}

.construction h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.1;
    color: #e2b84e;
    font-weight: 800;
    letter-spacing: .5px;
}

.construction p {
    margin: 7px 0;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.5;
}

.construction .sub {
    color: #d8d8d8;
    font-size: clamp(14px, 2vw, 17px);
}

@media (max-width: 600px) {
    .construction {
        min-height: 245px;
        padding: 32px 16px 42px;
    }

    .construction-icon {
        width: 62px;
        height: 62px;
        font-size: 27px;
        margin-bottom: 14px;
    }
}

@media (min-width: 1400px) {
    .hero-image {
        max-width: 1440px;
        margin: 0 auto;
    }
}
