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

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    background: #080808;
    color: #f4f4f4;
    font-family: Arial, Helvetica, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 25%, rgba(255, 194, 45, 0.07), transparent 34%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.025), transparent 40%);
}

.maintenance-page {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    padding: 55px 25px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    display: block;
    width: min(100px, 72vw);
    height: auto;
    object-fit: contain;
}

.tagline {
    margin-top: 3px;
    color: #b5b5b5;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.divider {
    width: 52px;
    height: 1px;
    margin: 30px auto 28px;
    background: #c79b2b;
}

.content {
    width: 100%;
    max-width: 690px;
}

.eyebrow {
    margin-bottom: 13px;
    color: #c79b2b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(29px, 5vw, 50px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.intro {
    max-width: 625px;
    margin: 23px auto 0;
    color: #a9a9a9;
    font-size: 16px;
    line-height: 1.75;
}

.studio {
    margin-top: 29px;
}

.studio-title {
    margin-bottom: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

address {
    color: #999;
    font-size: 14px;
    font-style: normal;
    line-height: 1.65;
}

.contact {
    margin-top: 23px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 25px;
}

.contact a {
    color: #f4f4f4;
    font-size: 14px;
    text-decoration: none;
}

.contact a:hover {
    color: #c79b2b;
}

.social {
    margin-top: 29px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.social a {
    min-width: 105px;
    padding: 10px 17px;
    border: 1px solid #363636;
    color: #ddd;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.social a:hover {
    border-color: #c79b2b;
    color: #c79b2b;
}

footer {
    margin-top: 48px;
    color: #4f4f4f;
    font-size: 10px;
    letter-spacing: 0.8px;
}

@media (max-width: 600px) {
    .maintenance-page {
        padding: 35px 20px 25px;
    }

    .logo {
        width: min(100px, 72vw); 
    }

    .tagline {
        font-size: 9px;
        letter-spacing: 4px;
    }

    .divider {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    h1 {
        font-size: clamp(27px, 8vw, 38px);
    }

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

    .contact {
        flex-direction: column;
        gap: 11px;
    }

    .social {
        flex-direction: column;
        align-items: center;
    }

    .social a {
        width: 180px;
    }

    footer {
        margin-top: 38px;
    }
}
