:root {
    --bg-color: #FAFAFA;
    --text-primary: #1A1A1A;
    --text-secondary: #5C5C5C;
    --accent: #8E7A5A; /* Elegant soft gold/brown */
    --accent-hover: #736145;
    --border-color: #E0E0E0;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

.split-layout {
    display: flex;
    min-height: 100vh;
}

.content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 4rem 8rem;
    max-width: 55%;
    background-color: #FFFFFF;
}

.image-side {
    flex: 1;
    background-color: #F0EEE9;
    background-image: url('makhana_hero.png');
    background-size: cover;
    background-position: center;
}

/* Header */
header {
    margin-bottom: auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-primary);
}

/* Main Content */
main {
    margin: 4rem 0;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.title em {
    font-style: italic;
    color: var(--accent);
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 480px;
    font-weight: 300;
}

/* Form */
.newsletter-form {
    display: flex;
    max-width: 400px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: transparent;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--accent);
}

/* Footer */
footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.socials a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.socials a:hover {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-side {
        padding: 3rem 4rem;
        max-width: 50%;
    }
    .title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }
    .content-side {
        max-width: 100%;
        min-height: 60vh;
        padding: 2.5rem 2rem;
    }
    .image-side {
        min-height: 40vh;
        order: -1;
    }
    .title {
        font-size: 2.5rem;
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-top: 3rem;
    }
    .socials a {
        margin-left: 0;
        margin-right: 1.5rem;
    }
}
