.ceo-message {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    overflow: hidden;
}

/* ── Left: Parallax image ────────────────────────────────────── */
.ceo-message__image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 500px;
}

/* ── Right: Content ──────────────────────────────────────────── */
.ceo-message__content {
    position: relative;
    padding: 80px 60px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* Big decorative quote */
.ceo-message__quote {
    position: absolute;
    top: 20px;
    left: 50px;
    font-size: 10rem;
    line-height: 1;
    color: var(--color-primary, #1a2fcc);
    opacity: 0.08;
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

/* Eyebrow */
.ceo-message__eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-primary, #1a2fcc);
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary, #1a2fcc);
    display: inline-block;
}

/* Heading */
.ceo-message__heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin: 0;
}

/* Message text */
.ceo-message__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.ceo-message__text p {
    margin: 0 0 16px;
}

.ceo-message__text p:last-child {
    margin-bottom: 0;
}

/* Author */
.ceo-message__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.ceo-message__name {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

.ceo-message__position {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.05em;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ceo-message {
        grid-template-columns: 1fr;
    }

    .ceo-message__image {
        min-height: 300px;
        background-attachment: scroll;
    }

    .ceo-message__content {
        padding: 48px 24px;
    }
}
