:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #5f5f5f;
    --line: #e7e7e7;
    --accent: #f0c330;
    --accent-dark: #c79d12;

    --font-display: "Times New Roman", Georgia, serif;
    --font-body: Inter, Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.hero {
    width: min(100%, 980px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eyebrow {
    margin: 0 0 20px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.hero-title {
    margin: 0;
    max-width: 10ch;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3.8rem, 10vw, 7.4rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--text);
}

.hero-title span {
    display: block;
    color: var(--accent);
}

.hero-copy {
    margin: 28px auto 0;
    max-width: 700px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--muted);
}

.status-pill {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(240, 195, 48, 0.35);
    border-radius: 999px;
    background: rgba(240, 195, 48, 0.12);
    color: #5f4a08;
    font-weight: 700;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(240, 195, 48, 0.55);
    animation: pulse 2s infinite;
}

.divider {
    width: min(100%, 760px);
    height: 1px;
    background: var(--line);
    margin: 36px 0 28px;
}

.signature-block {
    width: min(100%, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.signature-copy {
    text-align: left;
}

.note-label {
    margin: 0 0 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.note-value {
    margin: 0;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
    color: var(--text);
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
}

.site-logo {
    max-width: 260px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 195, 48, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(240, 195, 48, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(240, 195, 48, 0);
    }
}

@media (max-width: 768px) {
    .coming-soon {
        padding: 28px 18px;
    }

    .hero-title {
        font-size: clamp(3rem, 16vw, 5.2rem);
        max-width: 9ch;
    }

    .hero-copy {
        font-size: 1rem;
        line-height: 1.8;
    }

    .signature-block {
        flex-direction: column;
        gap: 18px;
    }

    .signature-copy {
        text-align: center;
    }

    .note-value {
        font-size: 1.6rem;
    }

    .site-logo {
        max-width: 220px;
        max-height: 90px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}