/* CONFETTI / TEAM — full-bleed photo with overlay 2-col card + CTA below */

.confetti {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-py-md) 0;
}

.confetti-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.confetti-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.confetti-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    border-radius: 28px;
    padding: 56px 60px;
    width: 100%;
    max-width: 1040px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.confetti-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* LEFT — display headline */
.confetti-heading {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.012em;
    color: var(--clr-navy);
    margin: 0;
}

/* "we live them" — red text with blue brushstroke underline */
.confetti-heading .fx-live {
    color: var(--clr-red);
    font-weight: 500;
    padding: 0 0.05em;
    display: inline-block;
    position: relative;
    z-index: 0;
}
.confetti-heading .fx-live::before {
    content: "";
    position: absolute;
    left: -0.03em;
    width: calc(100% + 0.06em);
    height: 0.34em;
    bottom: -0.06em;
    background-image: url("../assets/images/live-effect.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}
.confetti-heading .confetti-dot { color: var(--clr-navy); }

/* RIGHT — body copy */
.confetti-card-right {
    padding-top: 6px;
}
.confetti-card-right p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--clr-navy);
    margin-bottom: 16px;
    letter-spacing: 1.2px;
}
.confetti-card-right p:last-child { margin-bottom: 0; }

.confetti-card-right strong { font-weight: 500; }

/* First paragraph (lede) — display serif, larger to match mockup 4-line wrap */
.confetti-lede {
    font-family: var(--font-display) !important;
    font-weight: 300 !important;
    font-size: clamp(1.55rem, 2.05vw, 1.95rem) !important;
    line-height: 1.28 !important;
    letter-spacing: -0.005em !important;
    margin-bottom: 24px !important;
    color: var(--clr-navy);
}
.confetti-lede strong { font-weight: 500; }

/* CTA overlapping bottom edge of card (half above, half below) */
.confetti-cta {
    align-self: center;
    position: relative;
    z-index: 3;
    margin-top: -28px;
}

@media (max-width: 1024px) {
    .confetti { min-height: auto; padding: 64px 0; }
    .confetti-overlay { padding: 0 20px; }
    .confetti-card { padding: 40px 28px; border-radius: 20px; }
    .confetti-card-grid { grid-template-columns: 1fr; gap: 24px; }
    .confetti-heading { font-size: clamp(2rem, 7vw, 2.6rem); }
    .confetti-lede { font-size: clamp(1.2rem, 4.5vw, 1.55rem) !important; }
}

@media (max-width: 480px) {
    .confetti { padding: 48px 0; }
    .confetti-card { padding: 32px 22px; border-radius: 18px; }
    .confetti-cta { margin-top: -22px; }
}
