﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
    font-family: "Inter", sans-serif;
    color: #172033;
    background: #fbfaf7;
}

body {
    overflow: hidden;
}

.page {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 25%, rgba(255,255,255,0.95), rgba(251,250,247,0.88) 38%, rgba(239,241,248,0.55) 100%);
    overflow: hidden;
}

.shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.55;
    filter: blur(0.2px);
}

.shape-left {
    top: -150px;
    left: -180px;
    width: 520px;
    height: 520px;
    background: linear-gradient(135deg, rgba(212, 217, 236, 0.75), rgba(255,255,255,0));
    clip-path: polygon(0 0, 100% 0, 55% 65%, 0 100%);
}

.shape-right {
    right: -250px;
    bottom: -230px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(221, 225, 240, 0.75), rgba(255,255,255,0));
}

.hero {
    position: relative;
    z-index: 2;
    text-align: center;
    width: min(1100px, 92%);
    padding: 40px 20px;
    animation: fadeIn 1.2s ease forwards;
}

.name {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #182136;
    margin-bottom: 18px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 34px;
}

    .divider span {
        width: 54px;
        height: 1px;
        background: #c4a66f;
        opacity: 0.55;
    }

    .divider i {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #c4a66f;
        display: block;
    }

h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 11vw, 160px);
    line-height: 0.9;
    font-weight: 600;
    color: #172033;
    margin-bottom: 34px;
}

.subtitle {
    font-size: clamp(15px, 1.35vw, 21px);
    line-height: 1.7;
    color: #4a5060;
    font-weight: 400;
    max-width: 1120px;
    margin: 0 auto;
}

.mail {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

    .mail:hover {
        opacity: 0.65;
    }

.scroll-btn {
    margin-top: 58px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(196, 166, 111, 0.65);
    background: rgba(255,255,255,0.35);
    color: #b49359;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .scroll-btn:hover {
        transform: translateY(4px);
        background: rgba(255,255,255,0.75);
    }

footer {
    position: absolute;
    z-index: 2;
    bottom: 38px;
    left: 7%;
    right: 7%;
    display: flex;
    align-items: center;
    gap: 28px;
    color: #b49359;
}

    footer span {
        flex: 1;
        height: 1px;
        background: rgba(196, 166, 111, 0.28);
    }

    footer strong {
        font-family: "Cormorant Garamond", serif;
        font-size: 38px;
        font-weight: 600;
        letter-spacing: -2px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }

    .page {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 110px;
    }

    .name {
        font-size: 46px;
    }

    h1 {
        font-size: 76px;
    }

    .subtitle {
        font-size: 15px;
        max-width: 92%;
    }

    .scroll-btn {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin-top: 42px;
    }

    footer {
        bottom: 26px;
        gap: 18px;
    }

        footer strong {
            font-size: 30px;
        }
}
