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

html {
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #1e1511;
    color: #f0ece4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uc-container {
    text-align: center;
    padding: 40px;
}

.uc-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 8px;
}

.uc-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #f0ece4;
    margin-bottom: 30px;
}

.uc-divider {
    width: 60px;
    height: 1px;
    background: #c9a96e;
    margin: 0 auto 30px;
}

.uc-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #a09888;
    margin-bottom: 40px;
}

.uc-contact {
    font-size: 13px;
    color: #6b6358;
}

.uc-contact p {
    margin-bottom: 8px;
}

.uc-phone {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    color: #c9a96e;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.uc-phone:hover {
    color: #dfc198;
}

@media (max-width: 600px) {
    .uc-title {
        font-size: 32px;
    }

    .uc-phone {
        font-size: 18px;
    }
}
