:root {
    --bg: #000000;
    --panel: rgba(11, 11, 11, 0.86);
    --panel-border: rgba(213, 170, 97, 0.28);
    --gold: #d5aa61;
    --gold-soft: rgba(213, 170, 97, 0.16);
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.76);
    --line: rgba(255, 255, 255, 0.08);
    --shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
}

body {
    color: var(--text);
    font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.construction-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 14%, rgba(213, 170, 97, 0.14), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(213, 170, 97, 0.1), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
        #000000;
}

.construction-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(213, 170, 97, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(213, 170, 97, 0.08) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58));
    pointer-events: none;
}

.construction-header,
.hero {
    position: relative;
    z-index: 1;
}

.construction-header {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 28px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand img {
    width: 168px;
    max-width: 100%;
    display: block;
}

.hero {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    min-height: calc(100vh - 120px);
    display: grid;
    place-items: center;
    padding: 32px 0 48px;
}

.hero-card {
    width: min(760px, 100%);
    padding: 56px;
    border: 1px solid var(--panel-border);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
        var(--panel);
    box-shadow: var(--shadow);
    text-align: center;
    backdrop-filter: blur(8px);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.hero-card h1 {
    margin: 0;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.hero-card h1::after {
    content: "";
    display: block;
    width: 132px;
    height: 2px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 18%, var(--gold) 82%, transparent 100%);
}

.hero-copy {
    width: min(540px, 100%);
    margin: 26px auto 0;
    color: var(--text-soft);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.75;
}

@media (max-width: 991px) {
    .hero-card {
        padding: 44px 34px;
    }
}

@media (max-width: 767px) {
    .construction-header,
    .hero {
        width: min(100% - 32px, 100%);
    }

    .construction-header {
        padding-top: 22px;
    }

    .brand img {
        width: 132px;
    }

    .hero {
        padding: 22px 0 36px;
        min-height: calc(100vh - 104px);
    }

    .hero-card {
        padding: 36px 22px;
        border-radius: 26px;
    }

    .eyebrow {
        font-size: 12px;
        letter-spacing: 0.24em;
    }

    .hero-copy {
        font-size: 16px;
        line-height: 1.7;
    }
}
