* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

body {
    background-color: #f5f5ee;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
}

.header {
    width: 90%;
    max-width: 800px;
    text-align: left;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.2s forwards;
}

.logo {
    font-family: 'Jura', sans-serif;
    font-weight: 300;
    font-size: 1.6em;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.location {
    font-family: 'EB Garamond', serif;
    font-size: 1.1em;
    color: #1a1a1a;
    margin-top: 4px;
}

main {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 16px;
}

.hero-image {
    max-width: 800px;
    width: 90%;
    height: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.tagline {
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    max-width: 600px;
    line-height: 1.4;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.tagline em {
    font-style: italic;
}

.signup-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.7s forwards;
}

.signup-form input[type="email"] {
    padding: 10px 16px;
    font-size: 18px;
    font-family: 'EB Garamond', serif;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    background: transparent;
    width: 280px;
    outline: none;
    color: #1a1a1a;
}

.signup-form input[type="email"]::placeholder {
    color: #888;
    font-style: italic;
}

.signup-form button {
    padding: 10px 24px;
    font-size: 18px;
    font-family: 'EB Garamond', serif;
    font-style: italic;
    background: transparent;
    color: #1a1a1a;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    cursor: pointer;
    transition: opacity 0.2s;
}

.signup-form button:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 600px) {
    main {
        gap: 24px;
        padding: 16px;
    }

    .hero-image {
        max-width: 100%;
    }

    .tagline {
        font-size: 24px;
    }

    .signup-form {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .signup-form input[type="email"] {
        width: 100%;
    }

    .signup-form button {
        width: auto;
    }
}
