.weddings-hero {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.weddings-hero .wedding-visual img {
    min-height: 540px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: contrast(1.04) brightness(0.95);
}

.wedding-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
}

.wedding-split-reverse {
    grid-template-columns: 1fr 1fr;
}

.wedding-copy h1,
.wedding-copy h2 {
    margin-bottom: var(--space-md);
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1;
}

.wedding-copy p {
    max-width: 38rem;
    margin-bottom: var(--space-md);
}

.wedding-lead {
    font-size: var(--font-size-lg);
    color: rgba(245, 239, 232, 0.82);
}

.wedding-visual {
    position: relative;
    overflow: hidden;
    border-radius: 0.9rem;
    background: rgba(255,255,255,0.03);
}

.wedding-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wedding-visual:hover img {
    transform: scale(1.03);
}

.wedding-story {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.wedding-dip {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
}

.wedding-story.section-light .wedding-visual img {
    min-height: 500px;
}

.process-list {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.process-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-md);
    align-items: start;
}

.process-row span {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    opacity: 0.65;
    padding-top: 0.4rem;
}

.process-row h3 {
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-xl);
}

.wedding-trust {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.wedding-copy h1,
.wedding-copy h2 {
    letter-spacing: -0.015em;
}

.wedding-trust h2 {
    margin-bottom: var(--space-md);
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.wedding-wide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.trust-text {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
}

.trust-image-band {
    width: min(92%, 1200px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.trust-image-band img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.wedding-hands {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.wedding-includes {
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.inline-link {
    color: rgba(26, 26, 26, 0.85); /* or your text color token */
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
    transition: all 0.25s ease;
}

.inline-link:hover {
    border-bottom-color: rgba(26, 26, 26, 0.8);
}

/* 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);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .wedding-visual img {
        transition: none;
    }
}



@media (max-width: 900px) {
    .wedding-split,
    .wedding-split-reverse {
        grid-template-columns: 1fr;
    }

    .wedding-visual img {
        min-height: 360px;
    }

    .wedding-copy h1,
    .wedding-copy h2 {
        font-size: clamp(2.2rem, 8vw, 3.8rem);
    }
}