section#weddings {
    padding-block: var(--theme-section-spacing);
}

.feature--bloom { background: var(--theme-surface-raised); }

.feature__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(36px, 6vw, 90px);
}

.feature__inner--reverse .feature__media { order: 2; }

.feature__media {
    position: relative;
    border-radius: var(--theme-radius-lg);
    overflow: hidden;
}

.feature__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.feature__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: color-mix(in srgb, var(--theme-bg) 92%, transparent);
    color: var(--theme-coffee);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.6em 1.1em;
    border-radius: 999px;
}

.section-title {
    font-size: clamp(2rem, 4.4vw, 3.3rem);
    color: var(--theme-text);
}

.feature__text .section-title { margin-bottom: 1.2rem; }

.feature__text p {
    color: var(--theme-text-muted);
    max-width: 48ch;
    margin-bottom: 1.4rem;
}

.feature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.feature__list li {
    position: relative;
    padding-left: 1.7em;
    margin-bottom: 0.7em;
    color: var(--theme-espresso);
    font-size: 0.98rem;
}

.feature__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-mocha-deep);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--theme-font-family);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 1.05em 2.1em;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.35s var(--ease),
        color 0.35s var(--ease),
        border-color 0.35s var(--ease),
        transform 0.35s var(--ease);
    white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
    background-color: var(--theme-coffee);
    color: var(--theme-surface);
}

.btn--solid:hover { background-color: var(--theme-secondary); }

.btn--outline-light {
    background-color: transparent;
    border-color: var(--theme-hero-btn-border);
    color: var(--theme-hero-text);
}

.btn--outline-light:hover {
    background-color: var(--theme-surface);
    color: var(--theme-coffee);
    border-color: var(--theme-surface);
}

@media (max-width: 640px) {
    .btn { flex: 1 1 auto; }
}

@media (max-width: 980px) {
    .feature__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
