.cu-hero-section,
.cu-hero-section * {
    --cu-black: #000;
    --cu-white: #fff;
    --cu-gold: #c09d5b;
}

/* ---- Hero image + testimonial badges ---- */

.cu-hero-media {
    position: relative;
}

.cu-hero-img {
    width: 100%;
    display: block;
    padding-top: 8em;
}

.cu-testimonial {
    max-width: 440px;
    position: absolute;
    top: -28px;
    z-index: 5;
    background: var(--cu-black);
    padding: 18px 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.cu-testimonial--left {
    left: -80px;
}

.cu-testimonial--right {
    right: -80px;
}

.cu-testimonial-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cu-gold);
    margin-bottom: 8px;
}

.cu-testimonial-label svg {
    margin-right: 6px;
    font-size: 10px;
}

.cu-testimonial-quote {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.55;
    font-style: normal;
    color: var(--cu-white);
}

.cu-testimonial-company {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1199.98px) {
    .cu-testimonial--left {
        left: 24px;
    }

    .cu-testimonial--right {
        right: 24px;
    }
}

@media (max-width: 991.98px) {
    .cu-testimonial {
        position: static;
        max-width: none;
        margin: 0 0 16px;
    }

    .cu-testimonial--right {
        margin: 16px 0 0;
    }
}

/* ---- Intro heading ---- */

.cu-eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cu-gold, #c09d5b);
    margin-bottom: 14px;
}

.cu-heading {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading, inherit);
    text-wrap: pretty;
    color: var(--color-white);
}

/* ---- Photos ---- */

.cu-photo {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Pull quote ---- */

.cu-pull-quote {
    margin: 40px 0;
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(192, 157, 91, 0.35);
    border-bottom: 1px solid rgba(192, 157, 91, 0.35);
    font-size: clamp(30px, 2.4vw, 48px);
    line-height: 1.5;
    font-style: italic;
    color: var(--story-gold-light);
}

/* ---- Video button ---- */

.cu-video-btn {
    width: auto;
    padding: 0.5em 2em;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-weight: 700;
    color: var(--color-black) !important;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: var(--radius-btn);
    -moz-border-radius: var(--radius-btn);
    border-radius: var(--radius-btn);
    background: var(--color-gold);
    border: 1px solid rgba(192, 157, 91, 0.4);
    -moz-transition: color 0s linear 0s;
    -webkit-transition: color 0s linear 0s;
    -o-transition: color 0s linear 0s;
    transition: color 0s linear 0s;
}

.cu-video-btn:hover {
    color: var(--color-gold) !important;
    background: var(--color-white) !important;
    text-decoration: none !important;
    border: var(--color-gold) 1px solid !important;
}

/* ---- Video modal (fullscreen, borderless) ---- */

.cu-video-modal .modal-content {
    background: #000;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
}

.cu-video-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
}

.cu-video-modal .responsive-iframe-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.cu-video-modal .responsive-iframe-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cu-video-modal-close {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border: none;
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition:
        background-color 200ms ease,
        transform 200ms ease,
        box-shadow 200ms ease;
}

.cu-video-modal-close svg {
    position: relative;
    top: 2px;
    color: var(--color-black);
}

.cu-video-modal-close:hover {
    background: var(--color-white);
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
}

.cu-video-modal-close:hover svg {
    color: var(--color-gold);
}

@media (max-width: 575.98px) {
    .cu-video-modal-close {
        top: -18px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .cu-video-modal-close svg {
        top: 1px;
    }
}

@media (max-width: 991.98px) {
    .cu-hero-img {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .cu-hero-img {
        padding-top: 0;
    }
}
