/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f7f4;
    color: #242424;
}

/* Main */
.maintenance {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 90px;
}

.heart {
    font-size: 28px;
}

/* Content */
.eyebrow {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.6;
}

h1 {
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 700;
    margin-bottom: 28px;
}

.description {
    max-width: 540px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.divider {
    width: 50px;
    height: 2px;
    background: #242424;
    margin: 40px auto 25px;
}

.footer-text {
    font-size: 15px;
    color: #777;
}

/* Copyright */
.copyright {
    margin-top: 100px;
    font-size: 12px;
    color: #999;
}

/* Mobile */
@media (max-width: 600px) {

    .maintenance {
        padding: 30px 20px;
    }

    .logo {
        margin-bottom: 65px;
        font-size: 22px;
    }

    h1 {
        font-size: clamp(38px, 12vw, 52px);
        letter-spacing: -1.5px;
    }

    .description {
        font-size: 16px;
        line-height: 1.6;
    }

    .copyright {
        margin-top: 70px;
    }
}