:root {
    --yellow: #d4c92a;
    --yellow-light: #f2eb55;
    --yellow-strong: #c8ba00;
    --text: #202124;
    --muted: #667085;
    --border: #e5e7eb;
    --panel: #ffffff;
    --page: #f4f4f1;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 70% 20%, rgba(212, 201, 42, 0.08), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.04), transparent 34%),
        var(--page);
}

.page-shell {
    min-height: 100vh;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.site-card {
    width: min(1540px, 100%);
    min-height: calc(100vh - 48px);
    background: var(--panel);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.hero {
    position: relative;
    display: flex;
    min-height: calc(100vh - 220px);
}

/* LEFT PANEL */

.left {
    width: 35%;
    min-width: 360px;
    padding: 68px 50px 44px;
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.26), transparent 28%),
        linear-gradient(135deg, var(--yellow), var(--yellow-light));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    text-align: center;
}

.logo img {
    width: 145px;
    filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.20));
}

.logo-text {
    margin-top: 14px;
    font-weight: 800;
    letter-spacing: 6px;
    color: #4f5558;
}

.logo-text span {
    display: inline-block;
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 4px;
    color: #6d7376;
}

.left-text {
    margin-top: 54px;
    line-height: 1.55;
    font-size: 15px;
    color: #171717;
}

.left-text strong {
    display: block;
    margin-top: 13px;
    font-weight: 750;
}

.location {
    font-size: 14px;
    font-weight: 700;
    color: #202124;
}

/* RIGHT PANEL */

.right {
    width: 65%;
    padding: 92px 76px 72px;
    background:
        radial-gradient(circle at 72% 18%, rgba(212, 201, 42, 0.07), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #fbfbf8 100%);
    display: flex;
    align-items: flex-start;
}

.content {
    max-width: 820px;
    animation: fadeUp 0.55s ease-out both;
}

.accent-line {
    width: 46px;
    height: 4px;
    background: var(--yellow-strong);
    margin-bottom: 26px;
}

h1 {
    margin: 0 0 26px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #111827;
}

.highlight {
    color: var(--yellow-strong);
    font-weight: 850;
}

.desc {
    max-width: 680px;
    margin: 0 0 44px;
    color: #52657f;
    font-size: 17px;
    line-height: 1.7;
}

.pillars {
    display: flex;
    gap: 42px;
    margin-bottom: 38px;
}

.pillar {
    flex: 1;
    max-width: 250px;
}

.pillar-icon {
    margin-bottom: 10px;
    color: var(--yellow-strong);
    font-size: 27px;
    font-weight: 900;
    line-height: 1;
}

.pillar h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: #111827;
}

.pillar p {
    margin: 0;
    color: #52657f;
    font-size: 14px;
    line-height: 1.55;
}

.contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(200, 186, 0, 0.55);
    padding: 13px 22px;
    border-radius: 9px;
    text-decoration: none;
    color: #111827;
    background: #fffef4;
    font-size: 15px;
    font-weight: 650;
    transition: all 0.2s ease;
}

.contact:hover {
    border-color: var(--yellow-strong);
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
    transform: translateY(-1px);
}

/* SLIDING DIVIDER */

.left,
.right,
.split-divider {
    transition: all 0.45s cubic-bezier(.22, 1, .36, 1);
}

.split-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35%;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.split-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.16);
    cursor: ew-resize;
}

.split-divider span::before,
.split-divider span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 2px solid #9a9a9a;
    border-left: 2px solid #9a9a9a;
}

.split-divider span::before {
    left: 8px;
    transform: translateY(-50%) rotate(-45deg);
}

.split-divider span::after {
    right: 8px;
    transform: translateY(-50%) rotate(135deg);
}

.hero:has(.left:hover) .left {
    width: 38%;
}

.hero:has(.left:hover) .right {
    width: 62%;
}

.hero:has(.left:hover) .split-divider {
    left: 38%;
}

.hero:has(.right:hover) .left {
    width: 32%;
}

.hero:has(.right:hover) .right {
    width: 68%;
}

.hero:has(.right:hover) .split-divider {
    left: 32%;
}

/* VALUE STRIP */

.value-strip {
    min-height: 150px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 260px;
    gap: 0;
    padding: 26px 34px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background:
        radial-gradient(circle, rgba(0, 0, 0, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, #fbfaf4 0%, #f2f1ea 100%);
    background-size: 18px 18px, auto;
}

.value-item {
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.value-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: var(--yellow-strong);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.value-item p,
.strip-footer p {
    margin: 0;
    color: #202124;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 650;
}

.value-item strong {
    color: var(--yellow-strong);
    font-weight: 850;
}

.strip-footer {
    padding-left: 34px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.mate-icon {
    font-size: 28px;
    line-height: 1;
}

.strip-footer p {
    color: #4d5560;
    font-weight: 500;
}

.strip-footer strong {
    color: #111827;
}

/* ANIMATION */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .hero {
        min-height: auto;
    }

    .right {
        padding: 70px 52px;
    }

    .value-strip {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 28px;
    }

    .strip-footer {
        grid-column: span 2;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 24px;
        padding-left: 30px;
    }
}

@media (max-width: 900px) {
    .page-shell {
        padding: 0;
    }

    .site-card {
        min-height: 100vh;
        border-radius: 0;
    }

    .hero {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
        min-width: 0;
    }

    .left {
        padding: 48px 28px;
        min-height: 48vh;
    }

    .right {
        padding: 48px 28px;
    }

    h1 {
        font-size: 34px;
    }

    .pillars {
        flex-direction: column;
        gap: 26px;
    }

    .pillar {
        max-width: none;
    }

    .split-divider {
        display: none;
    }

    .value-strip {
        grid-template-columns: 1fr;
        padding: 30px 28px;
    }

    .value-item {
        padding: 0 0 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .strip-footer {
        grid-column: auto;
        padding-left: 0;
    }
}