:root {
    --primary-red: #cc0000;
    --black: #000000;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Work Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

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

.content-side {
    flex: 1;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.brand-logo {
    max-width: 500px;
    height: auto;
}

.main-content {
    max-width: 600px;
}

.status-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--primary-red);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary-red);
    -webkit-text-stroke: 1px var(--primary-red);
}

.description {
    font-size: 1.125rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 4rem;
    max-width: 480px;
}

.subscribe-form {
    display: flex;
    border-bottom: 2px solid var(--black);
    padding-bottom: 0.5rem;
    max-width: 400px;
    transition: all 0.3s ease;
}

.subscribe-form:focus-within {
    border-color: var(--primary-red);
}

input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    color: var(--black);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0 1rem;
}

button:hover {
    transform: translateX(10px);
    color: var(--primary-red);
}

.socials {
    display: flex;
    gap: 2rem;
}

.socials a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.socials a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

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

.socials a:hover::after {
    width: 100%;
}

.visual-side {
    flex: 0.8;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.red-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--primary-red);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    z-index: 2;
    filter: grayscale(100%) contrast(120%);
    transition: all 0.5s ease;
}

.visual-side:hover .image-container {
    filter: grayscale(0%) contrast(100%);
    transform: translate(-50%, -50%) scale(1.05);
}

@media (max-width: 1024px) {
    .headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

    .visual-side {
        height: 250px;
        flex: none;
        order: -1;
    }

    .content-side {
        padding: 2rem 1.5rem;
        text-align: center;
        /* Optional: Center content on mobile */
    }

    .brand-logo {
        max-width: 80%;
        /* responsive logo */
        margin: 0 auto;
        /* center logo */
        display: block;
    }

    header {
        display: flex;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .headline {
        font-size: 2rem;
    }

    .image-container {
        width: 100%;
        height: 100%;
    }

    .red-block {
        display: none;
    }

    .contact-details {
        align-items: center;
        /* Center contact items */
    }

    .socials {
        justify-content: center;
        /* Center socials */
    }
}

.contact-details {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.c-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.c-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-item p {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.4;
}

.c-item a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.c-item a:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}