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

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

:root {
    --color-black: #000000;
    --color-green-light: #7A9A7E;
    --color-green-dark: #223E2E;
    --color-white: #FFFFFF;
    --font-primary: 'Abadi', sans-serif;
}

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

img {
    max-width: 100%;
    display: block;
}

body {
    font-family: var(--font-primary);
    font-weight: 200;
    color: var(--color-black);
    background-color: var(--color-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    max-width: 1200px;
}

.landing-logo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.landing-logo-img {
    height: 120px;
    width: auto;
}

.landing-divider {
    width: 1px;
    height: 200px;
    background-color: var(--color-black);
    flex-shrink: 0;
    opacity: 0.3;
}

.landing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    position: relative;
    top: -4px;
}

.landing-headline {
    font-size: 36px;
    font-weight: 200;
    line-height: 1.3;
}

.landing-subtext {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.5;
    color: var(--color-black);
}

.landing-email {
    font-size: 18px;
    font-weight: 200;
    color: var(--color-black);
    text-decoration: none;
}

.landing-email:hover {
    color: var(--color-green-light);
}

/* Mobile layout — stack vertically */
@media (max-width: 825px) {
    .landing {
        flex-direction: column;
        gap: 32px;
        padding: 40px 24px;
        text-align: center;
    }

    .landing-logo-img {
        height: 110px;
    }

    .landing-logo {
        margin-bottom: -20px;
    }

    .landing-divider {
        width: 320px;
        height: 1px;
    }

    .landing-content {
        max-width: 380px;
    }

    .landing-headline {
        font-size: 28px;
    }
}
