:root {
    --green: #314b3b;
    --green-dark: #20352a;
    --cream: #f7f3e9;
    --gold: #c9a45c;
    --text: #354139;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(201,164,92,.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(49,75,59,.10),
            transparent 35%
        ),
        var(--cream);

    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}


/* Декоративные элементы */

.apple {
    position: absolute;
    font-size: 120px;
    opacity: .055;
    user-select: none;
}

.apple-1 {
    top: 5%;
    left: 4%;
    transform: rotate(-15deg);
}

.apple-2 {
    right: 3%;
    bottom: 5%;
    transform: rotate(15deg);
}


/* Основная карточка */

.card {
    width: 100%;
    max-width: 850px;

    border: 1px solid rgba(49,75,59,.15);
    border-radius: 30px;

    background: rgba(255,255,255,.72);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 25px 70px rgba(40,55,45,.14);

    padding: 55px 45px;

    text-align: center;

    position: relative;
    z-index: 2;
}


/* Логотип */

.logo {
    margin: 0 auto 30px;
}

.logo img {
    display: block;
    max-width: 180px;
    max-height: 150px;
    width: auto;
    height: auto;
    margin: 0 auto;
}


/* Надзаголовок */

.eyebrow {
    color: var(--gold);

    text-transform: uppercase;
    letter-spacing: 4px;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 12px;
}


/* Главный заголовок */

h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(46px, 7vw, 76px);
    line-height: .95;

    color: var(--green);

    font-weight: 700;

    margin-bottom: 28px;
}


/* Основной текст */

.lead {
    max-width: 650px;

    margin: 0 auto 20px;

    font-size: 18px;
    line-height: 1.75;

    font-weight: 400;
}

.lead strong {
    font-weight: 700;
    color: var(--green);
}


/* Информационный блок */

.info {
    margin: 32px auto;

    max-width: 650px;

    padding: 23px 25px;

    border-top: 1px solid rgba(49,75,59,.15);
    border-bottom: 1px solid rgba(49,75,59,.15);

    font-size: 16px;
    line-height: 1.75;

    font-weight: 400;
}


/* Заголовок перед кнопками */

.links-title {
    margin-top: 36px;
    margin-bottom: 20px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 30px;
    line-height: 1.15;

    color: var(--green);

    font-weight: 600;
}


/* Кнопки */

.buttons {
    display: flex;
    justify-content: center;

    gap: 14px;
    flex-wrap: wrap;
}

.btn-festival {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 14px 27px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all .25s ease;
}


/* Telegram */

.btn-telegram {
    background: var(--green);
    color: #fff;
}

.btn-telegram:hover {
    background: var(--green-dark);
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(49,75,59,.2);
}


/* Регистрация */

.btn-registration {
    background: var(--gold);
    color: #fff;
}

.btn-registration:hover {
    background: #b68f48;
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(201,164,92,.25);
}


/* Подвал */

.footer {
    margin-top: 40px;

    font-size: 13px;

    color: rgba(53,65,57,.55);
}


/* Мобильная версия */

@media (max-width: 576px) {

    .page {
        padding: 20px 12px;
    }

    .card {
        padding: 40px 22px;
        border-radius: 24px;
    }

    .logo {
        margin-bottom: 25px;
    }

    .logo img {
        max-width: 145px;
        max-height: 120px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
    }

    h1 {
        font-size: clamp(42px, 12vw, 58px);
        margin-bottom: 25px;
    }

    .lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .info {
        padding: 20px 10px;
        font-size: 15px;
    }

    .links-title {
        font-size: 27px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn-festival {
        width: 100%;
        font-size: 14px;
    }
}