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

:root {
    --bg: #292929;
    --accent: #D9B68E;
    --white: #FFFFFF;
    --muted: rgba(255,255,255,0.65);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--white);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

header .logo img {
    height: 40px;
    transition: opacity 0.2s;
}

header .logo:hover img {
    opacity: 0.8;
}

header nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

header nav a:hover {
    color: var(--accent);
}

/* Main Layout */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 48px;
}

.layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    align-items: start;
}

/* Left Column */
.left {
    padding-top: 20px;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 32px;
}

.left h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.3;
}

.left .lead {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.7;
}

.left p:not(.lead) {
    color: var(--muted);
    font-size: 15px;
}

/* Right Column */
.right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.apply-box {
    background: rgba(217,182,142,0.08);
    border: 1px solid rgba(217,182,142,0.2);
    padding: 36px;
    transition: border-color 0.3s;
}

.apply-box:hover {
    border-color: rgba(217,182,142,0.4);
}

.apply-box h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.apply-box > p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.apply-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    padding: 14px 32px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.25s ease;
    text-align: center;
}

.btn:hover {
    background: #c9a67e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217,182,142,0.25);
}

.email-display {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Connect Box */
.connect-box {
    padding: 28px 36px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: border-color 0.3s;
}

.connect-box:hover {
    border-color: rgba(255,255,255,0.15);
}

.connect-box h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.connect-box > p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s ease;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer img {
    height: 32px;
    opacity: 0.8;
}

footer span {
    font-size: 12px;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .left {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    header, main, footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    main {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .left h1 {
        font-size: 26px;
    }

    .apply-box,
    .connect-box {
        padding: 28px;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        justify-content: center;
    }

    footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
