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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f5f1e8;
    color: #2c2c2c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
header {
    padding: 40px 0 60px;
    text-align: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0 80px;
}

.hero {
    text-align: center;
    width: 100%;
}

.tagline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b7355;
    margin-bottom: 24px;
    font-weight: 500;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #2c2c2c;
}

h1 .highlight {
    color: #c87d5f;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.email-input {
    padding: 16px 24px;
    font-size: 16px;
    border: 1px solid #d4c4b0;
    border-radius: 50px;
    background-color: #fff;
    color: #2c2c2c;
    width: 320px;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #c87d5f;
}

.email-input::placeholder {
    color: #9a9a9a;
}

.waitlist-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #c87d5f;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.waitlist-btn:hover {
    background-color: #b36d52;
}

.waitlist-btn:active {
    transform: scale(0.98);
}

.privacy-note {
    font-size: 14px;
    color: #8b7355;
    margin-bottom: 60px;
}

/* Profile Images */
.profiles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.profile-image.center {
    width: 120px;
    height: 120px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e0d5c7;
}

.copyright {
    font-size: 14px;
    color: #8b7355;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.social-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c87d5f;
}

/* Success Message */
.success-message {
    display: none;
    background-color: #d4edda;
    color: #155724;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.success-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    .description {
        font-size: 16px;
    }

    .waitlist-form {
        flex-direction: column;
        width: 100%;
    }

    .email-input {
        width: 100%;
    }

    .waitlist-btn {
        width: 100%;
        justify-content: center;
    }

    .profile-image {
        width: 80px;
        height: 80px;
    }

    .profile-image.center {
        width: 100px;
        height: 100px;
    }

    .profiles {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 12px;
    }

    header {
        padding: 24px 0 40px;
    }

    main {
        padding: 20px 0 60px;
    }
}
