.boudoir-hero {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.boudoir-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}

.boudoir-split-reverse {
    grid-template-columns: 1fr 1fr;
}

.boudoir-copy h1,
.boudoir-copy h2 {
    margin-bottom: var(--space-md);
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1;
}

.boudoir-copy p {
    max-width: 38rem;
    margin-bottom: var(--space-md);
}

.boudoir-lead {
    font-size: var(--font-size-lg);
    color: rgba(245, 239, 232, 0.82);
}

.boudoir-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.boudoir-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.boudoir-visual:hover img {
    transform: scale(1.03);
}

.boudoir-story {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.boudoir-points {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.boudoir-point {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-md);
    align-items: start;
}

.boudoir-point span {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    opacity: 0.65;
    padding-top: 0.4rem;
}

.boudoir-point h3 {
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-xl);
}

.boudoir-trust {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.boudoir-trust h2 {
    margin-bottom: var(--space-md);
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.boudoir-trust-text {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
}

.boudoir-image-band {
    width: min(92%, 1200px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.boudoir-image-band img {
    display: block;
    width: 100%;
    height: clamp(280px, 45vw, 520px);
    object-fit: cover;
}

.boudoir-includes {
    padding-top: clamp(3rem, 6vw, 4rem);
    padding-bottom: clamp(5rem, 9vw, 7rem);
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: transform, opacity;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* HERO */
.boudoir-hero .boudoir-visual img {
    object-position: center 35%;
}

/* WHAT THIS IS ABOUT (pink image) */
.boudoir-story.section-light .boudoir-visual img {
    object-position: center center;
}

/* PROCESS (white robe image) */
.boudoir-story.section-dark .boudoir-visual img {
    object-position: center 30%;
}

/* TRUST BAND (bottom wide image) */
.boudoir-image-band img {
    object-position: center center;
}

.boudoir-visual img {
    filter: contrast(1.02) brightness(0.98);
}

.boudoir-subhead {
    margin-top: -0.35rem;
    margin-bottom: var(--space-md);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.3;
    color: rgba(245, 239, 232, 0.78);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .boudoir-visual img {
        transition: none;
    }
}

@media (max-width: 900px) {
    .boudoir-split,
    .boudoir-split-reverse {
        grid-template-columns: 1fr;
    }

    .boudoir-visual img {
        min-height: 360px;
    }

    .boudoir-copy h1,
    .boudoir-copy h2 {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
    }
}