:root {
    --yellow: #d4c92a;
    --yellow-light: #f2eb55;
    --text: #202124;
    --muted: #667085;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
}

/* WRAPPER */
.wrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
}

/* LEFT PANEL */
.left {
    width: 35%;
    min-width: 360px;
    padding: 70px 50px 40px;
    background:
        radial-gradient(circle at 65% 15%, rgba(255,255,255,0.22), transparent 28%),
        linear-gradient(135deg, var(--yellow), var(--yellow-light));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* RIGHT PANEL */
.right {
    width: 65%;
    background:
        radial-gradient(circle at 70% 20%, rgba(212, 201, 42, 0.08), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #f7f7f2 100%);
    padding: 140px 70px 80px;
    display: flex;
    align-items: flex-start;
}


.content {
    max-width: 700px;
    margin-top: 0;
}


.location {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
}


/* LOGO */
.logo {
    text-align: center;
}

.logo img {
    width: 140px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.18));
}

.logo-text {
    margin-top: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #555;
}

.logo-text span {
    font-size: 12px;
    letter-spacing: 3px;
    color: #777;
}

/* LEFT TEXT */
.left-text {
    margin-top: 40px;
    line-height: 1.5;
    font-size: 15px;
}

.left-text strong {
    display: block;
    margin-top: 12px;
    font-weight: 600;
}


/* RIGHT CONTENT */
.accent-line {
    width: 40px;
    height: 4px;
    background: var(--yellow);
    margin-bottom: 20px;
}

h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--yellow);
    font-weight: 700;
}

.desc {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.pillars {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.pillar h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.pillar p {
    font-size: 13px;
    color: var(--muted);
}

/* CONTACT */
.contact {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    background: #fafafa;
    transition: all 0.2s ease;
}

.contact:hover {
    border-color: var(--yellow);
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* FOOTER */
.footer {
    margin-top: 40px;
    font-size: 13px;
    color: #777;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

/* ========================= */
/* 🔥 SLIDING DIVIDER (KEY) */
/* ========================= */

.left,
.right,
.split-divider {
    transition: all 0.45s cubic-bezier(.22, 1, .36, 1);
}

/* Default */
.split-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35%;
    width: 1px;
    background: rgba(0, 0, 0, 0.16);
    z-index: 5;
}

/* Handle */
.split-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.16);
    cursor: ew-resize;
}

/* Hover LEFT */
.wrapper:has(.left:hover) .left {
    width: 38%;
}

.wrapper:has(.left:hover) .right {
    width: 62%;
}

.wrapper:has(.left:hover) .split-divider {
    left: 38%;
}

/* Hover RIGHT */
.wrapper:has(.right:hover) .left {
    width: 32%;
}

.wrapper:has(.right:hover) .right {
    width: 68%;
}

.wrapper:has(.right:hover) .split-divider {
    left: 32%;
}

/* MOBILE */
@media (max-width: 900px) {
    .wrapper {
        flex-direction: column;
    }

    .left, .right {
        width: 100%;
        min-width: 0;
    }

    .right {
        padding: 40px 25px;
    }

    .left {
        padding: 40px 25px;
    }

    h1 {
        font-size: 30px;
    }

    .pillars {
        flex-direction: column;
    }

    .split-divider {
        display: none;
    }
}