/* ════════════════════════════════════════
       SECTIONS 3 & 4 — SPLIT PHOTO + TEXT
════════════════════════════════════════ */
.split-sec {
    background: linear-gradient(140deg, #140800 0%, #3c1800 44%, #7c3200 100%);
    padding: clamp(24px, 5vw, 60px) clamp(20px, 5vw, 60px);
}

#s4 {
    background: linear-gradient(
        220deg,
        #020b00 0%,
        #082c05 38%,
        #124e0a 68%,
        #1e7014 100%
    );
}

/* green overrides s4 */
#s4 .corner-tl,
#s4 .corner-tr {
    border-top-color: rgba(140, 245, 62, 0.72);
}

#s4 .corner-tl,
#s4 .corner-bl {
    border-left-color: rgba(140, 245, 62, 0.72);
}

#s4 .corner-tr,
#s4 .corner-br {
    border-right-color: rgba(140, 245, 62, 0.72);
}

#s4 .corner-bl,
#s4 .corner-br {
    border-bottom-color: rgba(140, 245, 62, 0.72);
}

#s4 .scroll-nudge span {
    color: rgba(162, 248, 72, 0.8);
}

#s4 .scroll-nudge .arrow-dn {
    border-right-color: rgba(162, 248, 72, 0.8);
    border-bottom-color: rgba(162, 248, 72, 0.8);
}

#s4 .text-eyebrow {
    color: rgba(165, 245, 85, 0.9);
    border-color: rgba(145, 235, 62, 0.34);
}

#s4 .text-heading {
    color: #c2ec50;
    -webkit-text-stroke: 1.5px rgba(0, 55, 0, 0.3);
}

#s4 .text-divider {
    color: rgba(130, 225, 55, 0.52);
}

#s4 .text-divider::before,
#s4 .text-divider::after {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(118, 212, 48, 0.46),
        transparent
    );
}

#s4 .text-body {
    color: rgba(198, 248, 158, 0.9);
}

#s4 .text-caption {
    color: rgba(162, 242, 105, 0.62);
}

#s4 .photo-placeholder {
    border-color: rgba(122, 218, 55, 0.5);
    background: rgba(18, 130, 6, 0.08);
    color: rgba(158, 228, 82, 0.62);
}

#s4 .photo-placeholder:hover {
    border-color: rgba(162, 236, 70, 0.74);
}

.split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 60px);
    max-width: 1080px;
    width: 100%;
    align-items: center;
    z-index: 5;
}

@media (max-width: 700px) {
    .split-inner {
        grid-template-columns: 1fr;
    }

    .split-photo-right {
        order: -1;
    }
}

/* ── PHOTO PLACEHOLDER — replace with <img> tag when ready ── */
.photo-placeholder {
    aspect-ratio: 3/4;
    max-height: 62vh;
    border: 4px dashed rgba(255, 195, 60, 0.48);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(255, 150, 30, 0.06);
    color: rgba(255, 200, 70, 0.6);
    font-family: "Fredoka One", cursive;
    font-size: clamp(11px, 1.6vw, 15px);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
    transition:
        border-color 0.3s,
        transform 0.3s;
}

.photo-placeholder:hover {
    border-color: rgba(255, 218, 80, 0.72);
    transform: translateY(-4px);
}

.photo-ph-icon {
    font-size: clamp(36px, 6vw, 64px);
    opacity: 0.38;
}

.photo-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ── PHOTO FRAME WRAPPER
       Sits in the grid cell — gives the sticker something to hang off ── */
.photo-frame-wrap {
    position: relative;
}

/* ── ORANGE PHOTO FILTER OVERLAY
       Tints any <img> placed inside with a warm Lion King orange wash.
       Remove this div if you don't want the filter. ── */
.photo-filter-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: 20px;
    background: linear-gradient(
        155deg,
        rgba(255, 110, 10, 0.3) 0%,
        rgba(255, 70, 0, 0.12) 48%,
        rgba(195, 50, 0, 0.26) 100%
    );
    mix-blend-mode: multiply;
}

/* ── STICKER SLOT
       Hangs off the bottom-right corner of the photo frame.
       To use your own PNG: replace <div class="sticker-placeholder"> with
       <img src="your-sticker.png" alt=""> inside .photo-sticker ── */
.photo-sticker {
    position: absolute;
    top: -74px;
    left: -24px;
    width: clamp(72px, 14vw, 114px);
    height: clamp(72px, 14vw, 114px);
    z-index: 20;
    transform: rotate(-14deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.photo-sticker-2 {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: clamp(72px, 14vw, 114px);
    height: clamp(72px, 14vw, 114px);
    z-index: 20;
    transform: rotate(14deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.photo-sticker:hover,
.photo-sticker-2:hover {
    transform: rotate(-20deg) scale(1.14);
}

.sticker-placeholder {
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(255, 215, 60, 0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    background: rgba(0, 0, 0, 0.44);
    font-family: "Fredoka One", cursive;
    font-size: clamp(8px, 1.3vw, 11px);
    color: rgba(255, 215, 60, 0.8);
    letter-spacing: 1px;
    text-align: center;
    padding: 8px;
    animation: pulse 2.2s ease-in-out infinite;
}

.photo-sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.photo-sticker-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── EDITABLE TEXT BLOCK ── */
.text-block {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 20px);
}

.text-eyebrow {
    font-family: "Fredoka One", cursive;
    font-size: clamp(11px, 1.6vw, 15px);
    letter-spacing: 3px;
    color: rgba(255, 195, 60, 0.88);
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 40px;
    padding: 5px 18px;
    display: inline-block;
    border: 3px solid rgba(255, 195, 60, 0.32);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}

.text-heading {
    font-family: "Fredoka One", cursive;
    font-size: clamp(22px, 4.2vw, 44px);
    color: #ffd060;
    line-height: 1.15;
    -webkit-text-stroke: 1.5px rgba(110, 55, 0, 0.32);
}

.text-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 190, 50, 0.5);
    font-size: 20px;
}

.text-divider::before,
.text-divider::after {
    content: "";
    flex: 1;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 190, 50, 0.42),
        transparent
    );
}

.text-body {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 3vw, 38px);
    line-height: 1.5;
    color: rgba(255, 232, 178, 0.9);
}

.text-caption {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(12px, 1.6vw, 15px);
    color: rgba(255, 212, 102, 0.58);
    line-height: 1.6;
}
