:root {
    --brand: #c21782;
    --brand-dark: #85125f;
    --plum: #151019;
    --teal: #0f766e;
    --gold: #c9922d;
    --paper: #fff8ef;
    --ivory: #fffdf8;
    --muted: #756b78;
    --line: rgba(73, 45, 70, .14);
    --shadow: 0 30px 80px rgba(21, 16, 25, .16);
}

* { box-sizing: border-box; }

body {
    min-height: 100vh;
    margin: 0;
    color: var(--plum);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        linear-gradient(120deg, rgba(255, 248, 239, .98) 0%, rgba(255, 253, 248, .94) 48%, rgba(245, 232, 238, .98) 100%);
}

img {
    display: block;
    max-width: 100%;
}

.coming-soon {
    height: 100vh;
    display: grid;
    grid-template-rows: 104px minmax(0, 1fr);
    overflow: hidden;
}

.site-header {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
    padding: 20px 0 0;
}

.brand {
    display: inline-grid;
    place-items: center;
    width: 152px;
    height: 100px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 30px rgba(21, 16, 25, .08);
    backdrop-filter: blur(14px);
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.hero {
    width: min(1240px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: 42px;
    align-items: center;
    padding: 0 0 38px;
    min-height: 0;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3.2rem, 4.65vw, 5.55rem);
    line-height: .96;
    font-weight: 900;
    letter-spacing: 0;
}

p {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.62;
}

.status-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    max-width: 660px;
    margin-top: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.status-panel div {
    min-height: 112px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(12px);
}

.status-panel strong {
    display: block;
    color: var(--brand);
    font-size: 1.05rem;
    font-weight: 850;
}

.status-panel span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    margin: 0;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 10% -6% -4% 12%;
    z-index: -1;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(194, 23, 130, .18), rgba(15, 118, 110, .18), rgba(201, 146, 45, .2));
    filter: blur(24px);
}

.hero-visual img {
    width: 100%;
    max-height: calc(100vh - 180px);
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
    object-position: 58% center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

@media (max-width: 980px) {
    .coming-soon {
        height: auto;
        min-height: 100vh;
        grid-template-rows: auto 1fr;
        overflow: visible;
    }

    .site-header,
    .hero {
        width: min(100% - 40px, 1180px);
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 34px;
    }

    .hero-visual {
        max-width: 720px;
    }

    .hero-visual img {
        max-height: none;
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 620px) {
    .site-header,
    .hero {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        padding-top: 18px;
    }

    .brand {
        width: 146px;
        height: 100px;
    }

    .hero {
        padding: 34px 0 36px;
    }

    h1 {
        font-size: 2.55rem;
    }

    p {
        font-size: 1.02rem;
    }

    .status-panel {
        grid-template-columns: 1fr;
    }
}
