:root {
    --gold: #fdca00;
    --amber: #dfa300;
    --ink: #101010;
    --charcoal: #1b1a17;
    --paper: #fff8df;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    background: var(--ink);
}

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

.coming-soon-page {
    height: 100vh;
    padding: 16px;
    overflow: hidden;
    display: grid;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .78) 46%, rgba(0, 0, 0, .36) 100%),
        url("images/slider_home.jpg") center / cover no-repeat;
}

.hero-panel {
    width: min(1180px, 100%);
    height: calc(100vh - 32px);
    margin: auto;
    display: grid;
    grid-template-rows: auto 1fr auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(15, 15, 14, .28);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: auto -70px -120px auto;
    width: 430px;
    height: 430px;
    opacity: .16;
    background: url("images/element_logo.png") center / contain no-repeat;
    pointer-events: none;
}

.brand-bar,
.hero-content,
.proof-strip {
    position: relative;
    z-index: 1;
}

.brand-bar {
    min-height: 78px;
    padding: 18px clamp(24px, 4vw, 46px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-logo {
    width: clamp(126px, 12vw, 170px);
    height: auto;
    display: block;
}

.phone-link {
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, .36);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.phone-link:hover {
    color: var(--ink);
    border-color: var(--gold);
    background: var(--gold);
}

.hero-content {
    align-self: center;
    max-width: 680px;
    padding: clamp(24px, 4.5vw, 58px) clamp(24px, 5vw, 64px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(34px, 4.7vw, 64px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.intro {
    max-width: 650px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.48;
}

.actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-action,
.secondary-action {
    min-height: 46px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.primary-action {
    color: var(--ink);
    background: var(--gold);
    border: 2px solid var(--gold);
}

.secondary-action {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .7);
}

.primary-action:hover,
.secondary-action:hover {
    transform: translateY(-2px);
}

.secondary-action:hover {
    color: var(--ink);
    border-color: var(--white);
    background: var(--white);
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .42);
}

.proof-strip div {
    min-height: 84px;
    padding: 16px clamp(18px, 3vw, 32px);
    display: grid;
    align-content: center;
    gap: 6px;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.proof-strip div:last-child {
    border-right: 0;
}

.proof-strip strong {
    color: var(--gold);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
}

.proof-strip span {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 760px) {
    .coming-soon-page {
        height: auto;
        min-height: 100vh;
        padding: 10px;
        overflow: auto;
    }

    .hero-panel {
        height: auto;
        min-height: calc(100vh - 20px);
    }

    .brand-bar {
        min-height: auto;
        padding: 16px 18px 8px;
        align-items: flex-start;
        flex-direction: column;
    }

    .phone-link {
        display: none;
    }

    .hero-content {
        padding: 20px 18px 26px;
    }

    h1 {
        font-size: clamp(28px, 9.2vw, 40px);
        line-height: 1;
    }

    .intro {
        font-size: 14px;
        line-height: 1.45;
    }

    .actions {
        display: grid;
    }

    .primary-action,
    .secondary-action {
        width: 100%;
        padding-inline: 18px;
        text-align: center;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-strip div {
        min-height: 72px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .proof-strip div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 142px;
    }

    .primary-action {
        font-size: 14px;
        overflow-wrap: anywhere;
    }
}



