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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: #ead89b;
    color: #202018;
    font-family: "Cormorant Garamond", Georgia, serif;
    overflow-x: hidden;
}

.page {
    min-height: 100vh;
    position: relative;
    padding: 46px 68px 76px;
}

.logo {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.logo svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: #218a73;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.4;
}

.logo circle:nth-of-type(2),
.logo circle:nth-of-type(3) {
    fill: #218a73;
    stroke: none;
}

.hero {
    min-height: calc(100vh - 154px);
    display: grid;
    grid-template-columns: minmax(520px, 1.12fr) minmax(420px, 0.88fr);
    gap: clamp(64px, 8vw, 132px);
    align-items: center;
}

.left {
    display: flex;
    align-items: center;
}

.right {
    max-width: 660px;
    padding-top: clamp(34px, 5vw, 82px);
}

.greeting {
    display: flex;
    flex-wrap: wrap;
    gap: 0.24em;
    align-items: baseline;
    margin: 0;
    font-family: "Linotype Elisa Pro Bold", "Elisa Pro", "Alex Brush", "Brush Script MT", cursive;
    font-size: clamp(7.5rem, 11vw, 14.2rem);
    font-weight: 700;
    line-height: 0.78;
    letter-spacing: 0;
    transform: rotate(-2deg);
}

.greeting span:first-child {
    color: #238b70;
}

.greeting span:last-child {
    color: #004f45;
}

.right p {
    color: #11110c;
    font-size: clamp(1.32rem, 1.65vw, 1.86rem);
    font-weight: 600;
    line-height: 1.18;
    margin-bottom: 15px;
}

.right p:last-child {
    margin-bottom: 0;
}

.right strong {
    color: #11110c;
    font-weight: 700;
}

.datetime {
    position: fixed;
    left: 68px;
    bottom: 34px;
    color: #4e4c3f;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
}

@media (max-width: 1100px) {
    .page {
        padding: 38px 40px 68px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 42px;
        align-items: start;
        padding-top: 42px;
    }

    .left {
        justify-content: center;
    }

    .greeting {
        justify-content: center;
        font-size: clamp(6.5rem, 19vw, 12rem);
        text-align: center;
    }

    .right {
        max-width: 860px;
        margin: 0 auto;
        padding-top: 0;
    }

    .datetime {
        left: 40px;
    }
}

@media (max-width: 700px) {
    .page {
        padding: 24px 24px 38px;
    }

    .logo {
        width: 58px;
        height: 58px;
    }

    .hero {
        min-height: auto;
        gap: 34px;
        padding-top: 36px;
    }

    .greeting {
        margin-bottom: 0;
        font-size: clamp(4.3rem, 22vw, 7rem);
    }

    .right p {
        font-size: 1.13rem;
        line-height: 1.54;
        margin-bottom: 17px;
    }

    .datetime {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 42px;
        font-size: 0.82rem;
    }
}
