body {
    margin: 0;
    min-height: 100vh;
    background: #f8f4ec;
    color: #241f1b;
}

.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.95)),
        #f8f4ec;
}

.home-nav {
    height: 84px;
    display: flex;
    align-items: center;
    padding: 0 clamp(20px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #eadfce;
}

.home-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d241d;
}

.home-nav__logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.home-panel {
    width: min(1440px, calc(100% - 48px));
    margin: auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    padding: clamp(40px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e7ded2;
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(70, 48, 28, 0.08);
}

.home-panel__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    border-right: 1px solid #eadfce;
}

.home-logo-frame {
    width: min(420px, 100%);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf7f1;
    border-radius: 50%;
}

.home-logo {
    width: 82%;
    max-width: 360px;
    height: auto;
    display: block;
}

.home-panel__content {
    max-width: 680px;
}

.home-panel h1 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
    color: #2a211a;
}

.home-subtitle {
    margin-bottom: 18px;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 700;
    color: #715241;
}

.home-copy {
    margin-bottom: 36px;
    font-size: 1.1rem;
    color: #4f4945;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 28px;
    border-radius: 8px;
    background: #c98936;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(151, 93, 25, 0.22);
}

.home-button:hover,
.home-button:focus {
    background: #a96f28;
    color: #fff;
}

.home-footer {
    padding: 24px;
    text-align: center;
    color: #6f6a65;
    border-top: 1px solid #eadfce;
}

@media (max-width: 900px) {
    .home-nav {
        height: 72px;
        padding: 0 20px;
    }

    .home-panel {
        width: min(100% - 28px, 680px);
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
        margin: 28px auto;
    }

    .home-panel__visual {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #eadfce;
        padding-bottom: 24px;
    }

    .home-logo-frame {
        width: min(260px, 78vw);
    }

    .home-button {
        width: 100%;
    }
}
