/* ===== Сброс ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Шрифты ===== */
@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Formular';
    src: url('../fonts/Formular-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== Основа ===== */
html {
    height: 100%;
}

body {
    min-height: 100%;
    font-family: 'Formular', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #f0ede8;
    background-color: #1a1815;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    background: url('../img/bg.jpg') center / cover no-repeat #1a1815;
    padding: 2rem;
}

/* Затемнение поверх фона */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.55);
    z-index: 1;
}

/* Контент поверх затемнения */
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    width: 100%;
}

/* ===== Заголовок ===== */
.hero__title {
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.02em;
    color: #f0ede8;
    margin-bottom: 0.75rem;
}

/* ===== Подзаголовок ===== */
.hero__subtitle {
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: #d6d0c4;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Акцентное слово */
.hero__accent {
    color: #c49a6c;
}

/* ===== Кнопки ===== */
.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: #f0ede8;
    text-decoration: none;
    border: 1px solid #f0ede8;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.hero__btn:hover,
.hero__btn:focus-visible {
    background: #c49a6c;
    border-color: #c49a6c;
    color: #1a1815;
    outline: none;
}

/* ===== Нижняя строка ===== */
.hero__footer {
    font-size: 0.85rem;
    color: #9e9584;
    letter-spacing: 0.04em;
}

/* ===== Мобильные ===== */
@media (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero__footer {
        font-size: 0.8rem;
    }
}

/* ===== Страница ===== */
.page {
    min-height: 100vh;
    min-height: 100dvh;
    background: #f5f2eb;
    color: #2b2419;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page__container {
    max-width: 680px;
    width: 100%;
}

.page__title {
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
    color: #2b2419;
}

.page__subtitle {
    font-size: 1.1rem;
    color: #6b5e4e;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* ===== Список ===== */
.list {
    margin-bottom: 3rem;
}

.list__item {
    margin-bottom: 2.5rem;
}

.list__heading {
    font-weight: 700;
    font-size: 1.25rem;
    color: #2b2419;
    margin-bottom: 0.5rem;
}

.list__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a3f32;
}

.list__accent {
    color: #b8864e;
}

/* ===== CTA ===== */
.page__cta {
    margin-bottom: 2rem;
}

.page__cta-text {
    font-size: 1rem;
    color: #4a3f32;
    margin-bottom: 1rem;
}

.page__btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: #2b2419;
    text-decoration: none;
    border: 1px solid #2b2419;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.page__btn:hover,
.page__btn:focus-visible {
    background: #2b2419;
    color: #f5f2eb;
    outline: none;
}

/* ===== Ссылка назад ===== */
.page__back {
    display: inline-block;
    font-size: 0.9rem;
    color: #9e9584;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page__back:hover {
    color: #2b2419;
}

/* ===== Мобильные ===== */
@media (max-width: 480px) {
    .page {
        padding: 2.5rem 1.25rem;
    }

    .list__item {
        margin-bottom: 2rem;
    }
}

/* ===== Встречи ===== */
.meet__info {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a3f32;
}

.meet__info p {
    margin-bottom: 1rem;
}

.meet__buttons {
    margin-bottom: 2.5rem;
}

.meet__form {
    margin-bottom: 2.5rem;
}

.meet__form-label {
    font-size: 0.95rem;
    color: #4a3f32;
    margin-bottom: 0.5rem;
}

.form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.form__input {
    flex: 1;
    min-width: 220px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: #2b2419;
    background: #fff;
    border: 1px solid #c4b9a6;
    outline: none;
    transition: border-color 0.3s ease;
}

.form__input:focus {
    border-color: #2b2419;
}

.form__btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: #2b2419;
    background: transparent;
    border: 1px solid #2b2419;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.form__btn:hover,
.form__btn:focus-visible {
    background: #2b2419;
    color: #f5f2eb;
    outline: none;
}

.meet__footer {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b5e4e;
}

.meet__email {
    margin-top: 0.5rem;
}

.meet__email a {
    color: #b8864e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.meet__email a:hover {
    color: #2b2419;
}

/* ===== Мобильные ===== */
@media (max-width: 480px) {
    .form {
        flex-direction: column;
    }

    .form__input {
        min-width: 100%;
    }

    .form__btn {
        width: 100%;
    }
}