    /* ═══════════════════════════════════════
   ROOT — Dark luxury editorial
═══════════════════════════════════════ */
    .wed {
        --red: #b4232a;
        --red-lt: #d42e36;
        --cream: #f8f6f2;
        --dark: #111827;
        --dark2: #1a2233;
        --dark3: #222d3f;
        --gold: #c9a96e;
        --dim: rgba(226, 232, 240, .44);
        --dimmer: rgba(226, 232, 240, .20);

        --display: 'Playfair Display', Georgia, serif;
        --sans: 'Barlow', sans-serif;
        --ease: cubic-bezier(.4, 0, .2, 1);
        --spring: cubic-bezier(.22, 1, .36, 1);

        font-family: var(--sans);
        background: var(--dark);
        color: #fff;
        -webkit-font-smoothing: antialiased;
    }

    /* Button overrides */
    .wed .ws-button.primary {
        background-color: var(--red) !important;
        font-family: var(--sans) !important;
        letter-spacing: .04em !important;
        box-shadow: none !important;
    }

    .wed .ws-button.primary:hover {
        background-color: var(--red-lt) !important;
        opacity: 1 !important;
        transform: translateY(-1px) !important;
    }

    .wed .ws-button.secondary {
        background: transparent !important;
        color: rgba(255, 255, 255, .7) !important;
        border: 1px solid rgba(255, 255, 255, .22) !important;
        font-family: var(--sans) !important;
    }

    .wed .ws-button.secondary:hover {
        border-color: rgba(255, 255, 255, .5) !important;
        color: #fff !important;
        opacity: 1 !important;
    }

    /* ═══════════════════════════════════════
   ① HERO — Full-bleed editorial
   Marquee title chạy rộng hơn container
   Thiệp preview nổi trên nền đen như gallery
═══════════════════════════════════════ */
    .wed-hero {
        background: var(--dark);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    /* Grain texture overlay */
    .wed-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 0;
        opacity: .85;
    }

    /* Warm radial glow — làm nền không phẳng */
    .wed-hero__glow {
        position: absolute;
        pointer-events: none;
        z-index: 0;
    }

    .wed-hero__glow--1 {
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(180, 35, 42, .10) 0%, transparent 70%);
        top: -150px;
        right: -100px;
    }

    .wed-hero__glow--2 {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(99, 120, 180, .06) 0%, transparent 70%);
        bottom: -50px;
        left: 20%;
    }

    /* Red accent line — kẻ ngang mảnh */
    .wed-hero__line {
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--red), transparent);
        margin-bottom: 0;
        opacity: .6;
    }

    /* Top nav bar */
    .wed-hero__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 28px 0 24px;
        border-bottom: 1px solid rgba(226, 232, 240, .08);
        position: relative;
        z-index: 2;
    }

    .wed-hero__nav-label {
        font-family: var(--sans);
        font-size: .68rem;
        font-weight: 500;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--dim);
    }

    .wed-hero__nav-tag {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .68rem;
        font-weight: 500;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--red);
    }

    .wed-hero__nav-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--red);
        animation: wed-pulse 2s ease-in-out infinite;
    }

    @keyframes wed-pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .5;
            transform: scale(.7);
        }
    }

    /* Main hero body */
    .wed-hero__body {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        position: relative;
        z-index: 1;
    }

    /* Left — display type */
    .wed-hero__left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 56px 60px 0;
        border-right: 1px solid rgba(226, 232, 240, .08);
    }

    /* Issue number */
    .wed-hero__issue {
        font-size: .62rem;
        font-weight: 500;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--dim);
        margin-bottom: 32px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .wed-hero__issue::before {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--red);
    }

    /* Massive display heading */
    .wed-hero__h1 {
        font-family: var(--display);
        font-size: clamp(3.2rem, 6.5vw, 6rem);
        font-weight: 800;
        line-height: 1;
        letter-spacing: -.03em;
        color: #fff;
        margin-bottom: 0;
    }

    .wed-hero__h1-row {
        display: block;
        overflow: hidden;
    }

    .wed-hero__h1-row span {
        display: block;
        animation: wed-slide-up .9s var(--spring) both;
    }

    .wed-hero__h1-row:nth-child(2) span {
        animation-delay: .1s;
    }

    .wed-hero__h1-row:nth-child(3) span {
        animation-delay: .2s;
    }

    /* Italic accent */
    .wed-hero__h1 em {
        font-style: italic;
        color: var(--red);
        display: block;
        font-size: clamp(2.6rem, 5.5vw, 5rem);
        margin-top: 4px;
    }

    @keyframes wed-slide-up {
        from {
            transform: translateY(100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .wed-hero__desc {
        font-size: .9rem;
        line-height: 1.8;
        font-weight: 300;
        color: var(--dim);
        margin-top: 32px;
        max-width: 340px;
    }

    .wed-hero__actions {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 36px;
    }

    /* Price inline */
    .wed-hero__price-inline {
        font-size: .72rem;
        font-weight: 500;
        letter-spacing: .05em;
        color: var(--dim);
        margin-top: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .wed-hero__price-inline strong {
        font-size: .9rem;
        color: var(--gold);
        font-family: var(--display);
        font-style: italic;
    }

    .wed-hero__price-inline::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--gold);
    }

    /* Right — Preview artwork */
    .wed-hero__right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 0 60px 56px;
        position: relative;
    }

    /* The "artwork" frame */
    .wed-artwork {
        position: relative;
        width: 100%;
        max-width: 360px;
    }

    /* Outer decorative frame lines */
    .wed-artwork::before {
        content: '';
        position: absolute;
        inset: -20px;
        border: 1px solid rgba(226, 232, 240, .07);
        border-radius: 4px;
        pointer-events: none;
    }

    .wed-artwork::after {
        content: '';
        position: absolute;
        inset: -10px;
        border: 1px solid rgba(226, 232, 240, .04);
        border-radius: 2px;
        pointer-events: none;
    }

    /* The card itself */
    .wed-card {
        background: var(--cream);
        border-radius: 3px;
        padding: 48px 36px;
        text-align: center;
        position: relative;
        box-shadow:
            0 40px 80px rgba(0, 0, 0, .55),
            0 12px 32px rgba(0, 0, 0, .35),
            0 0 0 1px rgba(226, 232, 240, .07);
    }

    /* Red top bar */
    .wed-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--red);
    }

    .wed-card__label {
        font-size: .52rem;
        letter-spacing: .24em;
        text-transform: uppercase;
        color: rgba(15, 23, 42, .4);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .wed-card__label::before,
    .wed-card__label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(180, 35, 42, .2);
    }

    .wed-card__heart {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: var(--red);
        animation: wed-beat 2.2s ease-in-out infinite;
        display: block;
    }

    @keyframes wed-beat {

        0%,
        70%,
        100% {
            transform: scale(1);
        }

        15% {
            transform: scale(1.2);
        }

        40% {
            transform: scale(1.08);
        }
    }

    .wed-card__names {
        font-family: var(--display);
        font-size: 2rem;
        font-weight: 700;
        font-style: italic;
        color: #0f172a;
        line-height: 1.1;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .wed-card__names span {
        color: var(--red);
    }

    .wed-card__date {
        font-size: .58rem;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: rgba(15, 23, 42, .45);
        margin-bottom: 20px;
    }

    /* Countdown */
    .wed-card__cd {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .wed-card__cd-item {
        background: #fff;
        border: 1px solid rgba(180, 35, 42, .12);
        border-radius: 6px;
        padding: 8px 12px;
        min-width: 50px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    }

    .wed-card__cd-num {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--red);
        line-height: 1;
    }

    .wed-card__cd-lbl {
        font-size: .42rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(15, 23, 42, .4);
        margin-top: 3px;
    }

    .wed-card__cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--red);
        color: #fff;
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .04em;
        padding: 8px 20px;
        border-radius: 4px;
    }

    .wed-card__cta::before {
        content: '✓';
    }

    /* Floating stat pills on right side */
    .wed-stat-pill {
        position: absolute;
        right: -16px;
        background: var(--dark3);
        border: 1px solid rgba(226, 232, 240, .1);
        border-radius: 10px;
        padding: 12px 16px;
        animation: wed-bob 5s ease-in-out infinite;
    }

    .wed-stat-pill--1 {
        top: 10%;
        animation-delay: 0s;
    }

    .wed-stat-pill--2 {
        bottom: 18%;
        animation-delay: -2.5s;
    }

    @keyframes wed-bob {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-6px);
        }
    }

    .wed-stat-pill__num {
        font-family: var(--display);
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        letter-spacing: -.02em;
    }

    .wed-stat-pill__num span {
        color: var(--red);
    }

    .wed-stat-pill__lbl {
        font-size: .6rem;
        color: var(--dim);
        margin-top: 3px;
        white-space: nowrap;
    }

    /* Bottom meta row */
    .wed-hero__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        border-top: 1px solid rgba(226, 232, 240, .08);
        position: relative;
        z-index: 2;
    }

    .wed-hero__meta-item {
        font-size: .62rem;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--dimmer);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .wed-hero__meta-item strong {
        color: rgba(255, 255, 255, .55);
        font-weight: 500;
    }

    /* ═══════════════════════════════════════
   ② FEATURES — Numbered list editorial
   Nền đen, features như mục lục tạp chí
═══════════════════════════════════════ */
    .wed-feat {
        background: var(--dark2);
        border-top: 1px solid rgba(226, 232, 240, .07);
    }

    .wed-feat__header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: end;
        padding-bottom: 48px;
        border-bottom: 1px solid rgba(226, 232, 240, .08);
        margin-bottom: 0;
    }

    .wed-feat__h2 {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -.025em;
        color: #fff;
    }

    .wed-feat__h2 em {
        font-style: italic;
        color: var(--red);
    }

    .wed-feat__intro {
        font-size: .9rem;
        line-height: 1.8;
        font-weight: 300;
        color: var(--dim);
        max-width: 380px;
        align-self: end;
        padding-bottom: 4px;
    }

    /* List of features */
    .wed-feat__list {
        margin-top: 0;
    }

    .wed-feat__item {
        display: grid;
        grid-template-columns: 52px 1fr 1fr;
        gap: 0 32px;
        align-items: start;
        padding: 28px 0;
        border-bottom: 1px solid rgba(226, 232, 240, .07);
        transition: background .2s;
        cursor: default;
    }

    .wed-feat__item:hover {
        background: rgba(255, 255, 255, .02);
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        border-radius: 2px;
    }

    .wed-feat__num {
        font-family: var(--display);
        font-size: 1rem;
        font-style: italic;
        color: var(--red);
        padding-top: 2px;
        line-height: 1;
    }

    .wed-feat__name {
        font-size: .95rem;
        font-weight: 500;
        color: #fff;
        line-height: 1.3;
        letter-spacing: -.01em;
    }

    .wed-feat__desc {
        font-size: .82rem;
        line-height: 1.72;
        font-weight: 300;
        color: var(--dim);
    }

    /* ═══════════════════════════════════════
   ③ CTA — Split: dark left | cream right
   Tương phản tối/sáng — hoàn toàn khác
═══════════════════════════════════════ */
    .wed-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 520px;
    }

    /* Left dark panel */
    .wed-cta__dark {
        background: var(--dark);
        padding: 72px 56px 72px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(226, 232, 240, .07);
    }

    .wed-cta__dark::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(180, 35, 42, .5), transparent);
    }

    .wed-cta__label {
        font-size: .62rem;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .wed-cta__label::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--red);
    }

    .wed-cta__h2 {
        font-size: clamp(2rem, 3.5vw, 3.2rem);
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -.025em;
        color: #fff;
        margin-bottom: 16px;
    }

    .wed-cta__h2 em {
        display: block;
        font-style: italic;
        color: var(--red);
    }

    .wed-cta__sub {
        font-size: .88rem;
        line-height: 1.8;
        font-weight: 300;
        color: var(--dim);
        margin-bottom: 36px;
        max-width: 360px;
    }

    /* Perks — minimal inline dots */
    .wed-cta__perks {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 36px;
    }

    .wed-cta__perk {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .8rem;
        color: rgba(255, 255, 255, .6);
        font-weight: 300;
    }

    .wed-cta__perk-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--red);
        flex-shrink: 0;
    }

    .wed-cta__buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    /* Right cream panel */
    .wed-cta__light {
        background: var(--cream);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 72px 56px;
        position: relative;
    }

    /* Big price typography */
    .wed-cta__price-tag {
        font-size: .62rem;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: rgba(15, 23, 42, .4);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .wed-cta__price-tag::before,
    .wed-cta__price-tag::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(180, 35, 42, .2);
    }

    .wed-cta__big-price {
        font-family: var(--display);
        font-size: clamp(3.5rem, 7vw, 6rem);
        font-weight: 900;
        line-height: 1;
        color: var(--dark);
        letter-spacing: -.04em;
        text-align: center;
        margin-bottom: 4px;
    }

    .wed-cta__big-price sup {
        font-size: .45em;
        vertical-align: super;
        color: var(--red);
    }

    .wed-cta__big-price sub {
        font-size: .3em;
        vertical-align: baseline;
        color: rgba(15, 23, 42, .45);
        font-weight: 400;
        font-family: var(--sans);
        letter-spacing: .04em;
    }

    .wed-cta__price-note {
        font-size: .72rem;
        color: rgba(15, 23, 42, .45);
        text-align: center;
        margin-bottom: 40px;
        letter-spacing: .04em;
    }

    /* Red CTA button on cream bg */
    .wed-cta__light-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--red);
        color: #fff;
        font-family: var(--sans);
        font-size: .82rem;
        font-weight: 500;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: 10px 16px;
        border-radius: 8px;
        text-decoration: none;
        transition: all .25s var(--ease);
        box-shadow: 0 4px 20px rgba(180, 35, 42, .3);
    }

    .wed-cta__light-btn:hover {
        background: var(--red-lt);
        box-shadow: 0 8px 28px rgba(180, 35, 42, .4);
        color: #fff;
        text-decoration: none;
    }

    .wed-cta__light-btn svg {
        width: 14px;
        height: 14px;
    }

    .wed-cta__light-sub {
        font-size: .68rem;
        color: rgba(15, 23, 42, .35);
        margin-top: 16px;
        text-align: center;
        line-height: 1.6;
    }

    /* Decorative corner mark */
    .wed-cta__corner {
        position: absolute;
        bottom: 24px;
        right: 28px;
        font-family: var(--display);
        font-size: 5rem;
        font-weight: 900;
        font-style: italic;
        color: rgba(180, 35, 42, .08);
        line-height: 1;
        pointer-events: none;
        user-select: none;
        letter-spacing: -.05em;
    }

    /* ── Reveal ── */
    .wed-reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .65s var(--spring), transform .65s var(--spring);
    }

    .wed-reveal.on {
        opacity: 1;
        transform: none;
    }

    /* kicker override */
    .wed .ws-section__kicker-bar {
        background: var(--red);
    }

    .wed .ws-section__kicker-label {
        color: var(--red);
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
        .wed-hero__body {
            grid-template-columns: 1fr;
        }

        .wed-hero__left {
            padding: 40px 0 32px;
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, .07);
        }

        .wed-hero__right {
            padding: 40px 0;
        }

        .wed-stat-pill {
            display: none;
        }

        .wed-feat__header {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .wed-feat__item {
            grid-template-columns: 40px 1fr;
            gap: 0 20px;
        }

        .wed-feat__desc {
            grid-column: 2;
            margin-top: 4px;
        }

        .wed-cta {
            grid-template-columns: 1fr;
        }

        .wed-cta__dark {
            padding: 60px 0;
            border-right: none;
        }

        .wed-cta__light {
            padding: 60px 24px;
        }
    }

    @media (max-width: 560px) {
        .wed-hero__h1 {
            font-size: 2.6rem;
        }

        .wed-hero__nav-label {
            display: none;
        }
    }