/* ==========================================
   KING & PETALS
   IVORY · GOLD · BLACK
========================================== */

:root {
    --ivory: #faf8f3;
    --ivory-deep: #f2eee5;
    --gold: #c6a15b;
    --gold-light: #e8d2a1;
    --black: #181818;
    --muted: #77736c;
}


/* GLOBAL */

html {
    scroll-behavior: smooth;
}

.event-body {
    margin: 0;
    background: var(--ivory);
    color: var(--black);
    font-family: "DM Sans", sans-serif;
}

.event-body *,
.event-body *::before,
.event-body *::after {
    box-sizing: border-box;
}

.invitation-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--gold);
}


/* ==========================================
   HEADER
========================================== */

.invitation-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 30px 6%;
}

.invitation-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.invitation-brand em,
.brand-crown {
    color: var(--gold-light);
}

.brand-crown {
    margin-right: 10px;
}

.invitation-back {
    color: white;
    font-size: 10px;
    letter-spacing: 2px;
    text-decoration: none;
}


/* ==========================================
   HERO
========================================== */

.invitation-hero {
    position: relative;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    isolation: isolate;

    background: #29251f;
}

.invitation-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.invitation-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* DARKER HERO BACKGROUND */

.invitation-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.invitation-hero-content {
    width: min(1100px, 90%);
    padding: 130px 0 110px;
    text-align: center;
    color: white;
}

.invitation-ornament {
    font-size: 28px;
    color: var(--gold-light);
    margin: 20px 0;
}

.invitation-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 800;
    line-height: 1;
    margin: 20px 0 35px;
}

.invitation-couple {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 4vw, 48px);
}

.invitation-couple em {
    color: var(--gold-light);
    margin: 0 10px;
}

.invitation-gold-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 25px auto;
}

.invitation-hero-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
}

.invitation-discover {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    margin-top: 40px;
    padding: 16px 30px;

    border: 1px solid var(--gold-light);
    border-radius: 12px 35px 12px 35px;

    color: white;
    text-decoration: none;

    font-size: 10px;
    letter-spacing: 2px;

    transition: .3s ease;
}

.invitation-discover:hover {
    background: var(--gold-light);
    color: var(--black);
}

.invitation-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    color: white;
    text-decoration: none;

    font-size: 9px;
    letter-spacing: 3px;
    text-align: center;
}

.invitation-scroll-indicator span {
    display: block;
    width: 1px;
    height: 25px;
    margin: 10px auto 0;
    background: var(--gold-light);
}


/* ==========================================
   SCRATCH SECTION
========================================== */

.luxury-scratch {
    position: relative;

    padding: 100px 20px 110px;

    background:
        radial-gradient(
            circle at 50% 45%,
            #ffffff,
            #faf8f3 65%,
            #f1ece2
        );

    text-align: center;
}

.scratch-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 7vw, 85px);
    font-weight: 400;
    margin: 15px 0;
    color: var(--black);
}

.scratch-heading p:last-child {
    color: var(--muted);
    font-size: 14px;
}

.scratch-ornament {
    color: var(--gold);
    font-size: 24px;
    margin: 20px 0;
}


/* SCRATCH CARD */

.luxury-scratch-card {
    position: relative;

    width: min(550px, 100%);
    height: 240px;

    margin: 50px auto 25px;

    border: 1px solid var(--gold);
    border-radius: 18px;

    overflow: hidden;

    background: white;

    box-shadow:
        0 25px 65px rgba(0,0,0,.10),
        0 0 40px rgba(198,161,91,.12);
}

.scratch-under {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: white;
}

.scratch-under strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 500;
    color: var(--black);
}

.scratch-crown {
    font-size: 25px;
    color: var(--gold);
}

.luxury-scratch-card canvas {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    touch-action: none;
    cursor: crosshair;
}

.scratch-instruction {
    margin-top: 30px;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
}

.scratch-skip {
    margin-top: 20px;

    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gold);

    padding: 8px 0;

    color: var(--black);
    cursor: pointer;
}

.reveal-actions {
    margin-top: 30px;
}

.reveal-actions[hidden] {
    display: none !important;
}

.reveal-celebration {
    font-family: "Great Vibes", cursive;
    font-size: 42px;
    color: var(--gold);
}

.reveal-continue {
    display: inline-flex;
    gap: 20px;

    padding: 16px 30px;

    background: var(--gold);
    color: white;

    text-decoration: none;
    border-radius: 12px 35px 12px 35px;

    font-size: 10px;
    letter-spacing: 2px;
}


/* ==========================================
   FORMAL INVITATION
========================================== */

.formal-invitation {
    padding: 100px 20px;

    background:
        linear-gradient(
            180deg,
            #faf8f3,
            #f3efe7
        );
}

.formal-invitation-card {
    position: relative;

    max-width: 850px;
    margin: auto;

    padding: 90px 65px;

    background: #ffffff;

    border: 1px solid var(--gold);

    text-align: center;

    box-shadow:
        0 30px 80px rgba(0,0,0,.06);
}

/* INNER GOLD BORDER */

.formal-invitation-card::before {
    content: "";

    position: absolute;
    inset: 12px;

    border: 1px solid rgba(198,161,91,.35);

    pointer-events: none;
}

.formal-ornament,
.formal-bottom-ornament {
    font-size: 36px;
    color: var(--gold);
}

.formal-eyebrow {
    margin-top: 35px;

    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
}

.formal-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 6vw, 65px);
    font-weight: 400;

    line-height: 1.1;

    margin: 20px 0 40px;
}

.formal-heading em {
    display: block;
    color: var(--gold);
    font-weight: 400;
}

.formal-families {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 1.4;
}

.formal-families span {
    color: var(--gold);
    font-size: 35px;
}

.formal-invite-text {
    margin-top: 45px;

    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
}

.formal-ceremony {
    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    margin: 25px 0;
}

.formal-small-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-style: italic;
    color: var(--muted);
}

.formal-couple {
    font-family: "Great Vibes", cursive;
    font-size: clamp(45px, 7vw, 75px);
    font-weight: 400;
    line-height: 1.3;

    margin: 40px 0;
}

.formal-couple span {
    color: var(--gold);
}

.formal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    color: var(--gold);
}

.formal-divider span {
    width: 70px;
    height: 1px;
    background: var(--gold);
}

.formal-event-details {
    margin: 35px 0 55px;

    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.formal-event-details p {
    margin: 10px 0;
}

.formal-date {
    color: var(--gold);
    font-size: 32px;
}


/* ==========================================
   COUNTDOWN INSIDE INVITATION
========================================== */

.formal-countdown {
    padding: 45px 0;

    border-top: 1px solid rgba(198,161,91,.35);
    border-bottom: 1px solid rgba(198,161,91,.35);
}

.formal-countdown-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
}

.formal-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

    margin: 35px auto;
}

.formal-countdown-unit {
    padding: 20px 5px;

    border: 1px solid rgba(198,161,91,.4);

    border-radius: 12px 28px 12px 28px;
}

.formal-countdown-unit strong {
    display: block;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(35px, 5vw, 60px);
    font-weight: 400;

    color: var(--gold);
}

.formal-countdown-unit span {
    display: block;

    margin-top: 5px;

    font-size: 9px;
    letter-spacing: 2px;
}

.formal-countdown-message {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-style: italic;
    color: var(--muted);
}


/* MAP BUTTON */

.formal-map-button {
    display: inline-block;

    margin: 45px 0;

    padding: 15px 35px;

    border: 1px solid var(--gold);
    border-radius: 12px 35px 12px 35px;

    color: var(--black);
    text-decoration: none;

    font-size: 10px;
    letter-spacing: 2px;
}

.formal-map-button:hover {
    background: var(--gold);
    color: white;
}


/* ==========================================
   EVENT FOOTER — MATCH LANDING PAGE
========================================== */

.event-body .invitation-footer {
    background: #080808;
    color: #ffffff;

    border-top: 1px solid rgba(212, 175, 103, 0.5);

    padding: 20px 5%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;

    text-align: left;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
}

.event-body .invitation-footer p {
    margin: 0;
    color: #ffffff;
}

.event-body .invitation-footer p + p::before {
    content: "|";
    color: #d4af67;
    margin-right: 12px;
}

.event-body .invitation-footer a {
    color: #d4af67;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-body .invitation-footer a:hover {
    color: #ffffff;
}

/* MOBILE */

@media (max-width: 768px) {

    .event-body .invitation-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 15px 20px;
        font-size: 9px;
        text-align: left;
    }

    .event-body .invitation-footer p + p::before {
        display: none;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .invitation-header {
        padding: 22px 5%;
    }

    .invitation-brand {
        font-size: 20px;
    }

    .invitation-back {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .invitation-hero h1 {
        font-size: clamp(52px, 13vw, 85px);
    }

    .invitation-couple {
        font-size: 27px;
    }

    .luxury-scratch {
        padding: 80px 16px;
    }

    .luxury-scratch-card {
        height: 210px;
    }

    .formal-invitation {
        padding: 60px 12px;
    }

    .formal-invitation-card {
        padding: 65px 25px;
    }

    .formal-countdown-grid {
        gap: 7px;
    }

    .formal-countdown-unit {
        padding: 15px 3px;
        border-radius: 8px 18px 8px 18px;
    }

    .formal-countdown-unit strong {
        font-size: 32px;
    }

    .formal-countdown-unit span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .formal-couple {
        font-size: 48px;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================
   KING & PETALS
   LUXURY CHAMPAGNE BACKGROUNDS
========================================== */


/* ==========================================
   1. SCRATCH SECTION
========================================== */

.luxury-scratch {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 110px 20px 120px;

    background:
        radial-gradient(
            ellipse at 15% 20%,
            rgba(198, 161, 91, 0.20),
            transparent 42%
        ),
        radial-gradient(
            ellipse at 85% 75%,
            rgba(198, 161, 91, 0.22),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #fffdf8 0%,
            #f2e7d3 48%,
            #fffaf0 100%
        );
}


/* Decorative gold rings */

.luxury-scratch::before {
    content: "";

    position: absolute;
    z-index: -1;

    width: 540px;
    height: 540px;

    top: -300px;
    left: -240px;

    border: 1px solid rgba(180, 137, 65, 0.30);
    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(198, 161, 91, 0.035),
        0 0 0 75px rgba(198, 161, 91, 0.025);
}


/* Decorative bottom-right ring */

.luxury-scratch::after {
    content: "";

    position: absolute;
    z-index: -1;

    width: 600px;
    height: 600px;

    right: -290px;
    bottom: -350px;

    border: 1px solid rgba(180, 137, 65, 0.30);
    border-radius: 50%;

    box-shadow:
        0 0 0 40px rgba(198, 161, 91, 0.04),
        0 0 0 90px rgba(198, 161, 91, 0.025);
}


/* Make scratch heading more elegant */

.scratch-heading {
    position: relative;
    z-index: 1;
}

.scratch-heading h2 {
    color: #29231b;

    text-shadow:
        0 8px 35px rgba(198, 161, 91, 0.12);
}


/* More prominent scratch card */

.luxury-scratch-card {
    box-shadow:
        0 35px 75px rgba(105, 73, 30, 0.20),
        0 0 0 8px rgba(255, 255, 255, 0.45),
        0 0 0 9px rgba(198, 161, 91, 0.15);
}


/* ==========================================
   2. FORMAL INVITATION SECTION
========================================== */

.formal-invitation {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 110px 20px;

    background:
        radial-gradient(
            ellipse at 10% 15%,
            rgba(198, 161, 91, 0.24),
            transparent 45%
        ),
        radial-gradient(
            ellipse at 90% 85%,
            rgba(198, 161, 91, 0.25),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #f4e8d3 0%,
            #fffdf8 45%,
            #ecddbf 100%
        );
}


/* Left decorative ornament */

.formal-invitation::before {
    content: "❦";

    position: absolute;
    z-index: -1;

    top: 70px;
    left: 3%;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(180px, 25vw, 400px);

    line-height: 1;
    color: rgba(174, 129, 54, 0.13);

    transform: rotate(-25deg);

    pointer-events: none;
}


/* Right decorative ornament */

.formal-invitation::after {
    content: "❦";

    position: absolute;
    z-index: -1;

    right: 2%;
    bottom: 80px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(180px, 25vw, 400px);

    line-height: 1;
    color: rgba(174, 129, 54, 0.13);

    transform: rotate(155deg);

    pointer-events: none;
}


/* Elevated invitation card */

.formal-invitation-card {
    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(239, 221, 181, 0.22),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #ffffff 50%,
            #fffdf7 100%
        );

    border: 1px solid #c6a15b;

    box-shadow:
        0 45px 100px rgba(90, 62, 25, 0.15),
        0 0 0 7px rgba(255, 255, 255, 0.65),
        0 0 0 8px rgba(198, 161, 91, 0.18);
}


/* Richer inner border */

.formal-invitation-card::before {
    border: 1px solid rgba(180, 137, 65, 0.50);
}


/* Gold heading accent */

.formal-ornament {
    text-shadow:
        0 4px 20px rgba(198, 161, 91, 0.35);
}


/* ==========================================
   MOBILE ADJUSTMENTS
========================================== */

@media (max-width: 768px) {

    .luxury-scratch {
        padding: 85px 16px 100px;
    }

    .luxury-scratch::before {
        width: 300px;
        height: 300px;
        top: -180px;
        left: -190px;
    }

    .luxury-scratch::after {
        width: 350px;
        height: 350px;
        right: -230px;
        bottom: -220px;
    }

    .formal-invitation {
        padding: 75px 18px;
    }

    .formal-invitation::before,
    .formal-invitation::after {
        font-size: 170px;
        opacity: 0.65;
    }

    .formal-invitation-card {
        box-shadow:
            0 20px 50px rgba(90, 62, 25, 0.12),
            0 0 0 4px rgba(255, 255, 255, 0.65);
    }

}

/* ==========================================
   KING & PETALS
   EVENT FOOTER — MATCH LANDING PAGE
========================================== */

.event-body .luxury-footer {
    width: 100%;

    background: #080808;
    color: #ffffff;

    border-top: 1px solid rgba(212, 175, 103, 0.5);

    padding: 20px 5%;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
}

.event-body .footer-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;

    gap: 12px;

    color: #ffffff;
}

.event-body .footer-left > span {
    color: #ffffff;
}

.event-body .footer-separator {
    color: #d4af67 !important;
}

.event-body .luxury-footer a {
    color: #d4af67;
    text-decoration: none;

    transition: color 0.3s ease;
}

.event-body .luxury-footer a:hover {
    color: #ffffff;
}

/* MOBILE */

@media (max-width: 768px) {

    .event-body .luxury-footer {
        padding: 15px 20px;
        font-size: 9px;
    }

    .event-body .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .event-body .footer-separator {
        display: none;
    }

}
/* ==========================================
   KING & PETALS
   HERO → SCRATCH SEAMLESS TRANSITION
========================================== */

/* 1. HERO */

.event-body .invitation-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    /* Reduce the overall hero height slightly */
    min-height: 75vh;

    /* No extra space below the hero */
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Keep the image filling the hero */

.event-body .invitation-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.event-body .invitation-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Keep the existing dark overlay on the photograph */

.event-body .invitation-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.65) 65%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

/* Fade the bottom of the photograph into ivory */

.event-body .invitation-hero::after {
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: clamp(120px, 20vh, 240px);

    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255, 250, 240, 0) 0%,
        rgba(255, 250, 240, 0.12) 25%,
        rgba(255, 250, 240, 0.55) 60%,
        #fffaf0 100%
    );
}

/* Ensure the heading stays above the image */

.event-body .invitation-hero-content {
    position: relative;
    z-index: 3;
}


/* ==========================================
   2. REMOVE THE GAP BETWEEN SECTIONS
========================================== */

.event-body #reveal {
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

/* Scratch section background matches fade endpoint */

.event-body #reveal .luxury-scratch {
    position: relative;

    margin-top: 0;

    /* Reduced from the previous 110px */
    padding-top: 45px;

    background:
        radial-gradient(
            ellipse at 15% 20%,
            rgba(198, 161, 91, 0.12),
            transparent 42%
        ),
        radial-gradient(
            ellipse at 85% 75%,
            rgba(198, 161, 91, 0.18),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #fffaf0 0%,
            #fffdf8 45%,
            #f2e7d3 100%
        );
}

/* Remove extra spacing above the scratch heading */

.event-body #reveal .scratch-heading {
    margin-top: 0;
    padding-top: 0;
}

.event-body #reveal .scratch-heading h2 {
    margin-top: 0;
}


/* ==========================================
   3. MOBILE
========================================== */

@media (max-width: 768px) {

    .event-body .invitation-hero {
        min-height: 58vh;
    }

    .event-body .invitation-hero::after {
        height: 125px;
    }

    .event-body #reveal .luxury-scratch {
        padding-top: 30px;
    }

}

/* ==========================================
   KING & PETALS
   WEDDING WEEKEND — ALTERNATING LAYOUT
========================================== */

.wedding-weekend {
    background: #fffaf5;
    color: #24201c;
    padding: 90px 5% 100px;
    overflow: hidden;
}

/* SECTION HEADING */

.weekend-heading {
    max-width: 700px;
    margin: 0 auto 75px;
    text-align: center;
}

.weekend-eyebrow {
    color: #b48b49;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
}

.weekend-heading h2 {
    margin: 18px 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.1;
}

.weekend-heading h2 em {
    color: #b48b49;
    font-weight: 400;
}

.weekend-heading > p:last-child {
    color: #766e65;
    font-size: 14px;
    line-height: 1.8;
}

/* EVENTS CONTAINER */

.weekend-events {
    width: min(1120px, 100%);
    margin: 0 auto;
}

/* DEFAULT: IMAGE LEFT, TEXT RIGHT */

.weekend-event {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(30px, 6vw, 90px);

    padding: 35px 0;
    min-height: 430px;
}

/* EVEN ROWS: TEXT LEFT, IMAGE RIGHT */

.weekend-event:nth-child(even) .weekend-photo {
    order: 2;
}

.weekend-event:nth-child(even) .weekend-info {
    order: 1;
}

/* PHOTOGRAPHS */

.weekend-photo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weekend-photo img {
    display: block;

    width: 100%;
    height: 450px;

    object-fit: contain;
}

/* EVENT DETAILS */

.weekend-info {
    padding: 20px 0;
}

.weekend-number {
    display: block;
    margin-bottom: 12px;

    color: #c2a16a;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.weekend-info h3 {
    margin: 0 0 18px;

    color: #b48b49;
    font-family: "Great Vibes", cursive;
    font-size: clamp(48px, 5vw, 74px);
    font-weight: 400;
    line-height: 1.15;
}

.weekend-date {
    margin: 0 0 8px;

    color: #2c2823;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.weekend-time {
    margin: 0;

    color: #6c6257;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.weekend-rule {
    width: 55px;
    height: 1px;

    margin: 25px 0;

    background: #c2a16a;
}

.weekend-description {
    max-width: 390px;

    color: #655c52;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.9;
}

/* DRESS CODE */

.weekend-dress {
    display: flex;
    flex-direction: column;
    gap: 7px;

    margin-top: 25px;
}

.weekend-dress span {
    color: #a88754;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
}

.weekend-dress strong {
    color: #29231d;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 500;
}

/* CLOSING */

.weekend-closing {
    margin: 70px 0 0;

    text-align: center;
    color: #b48b49;

    font-family: "Great Vibes", cursive;
    font-size: 42px;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .wedding-weekend {
        padding: 65px 20px 75px;
    }

    .weekend-heading {
        margin-bottom: 35px;
    }

    .weekend-event {
        grid-template-columns: 1fr;
        gap: 10px;

        min-height: 0;
        padding: 35px 0;
    }

    /* Always show the photo first on mobile */

    .weekend-event:nth-child(even) .weekend-photo,
    .weekend-event:nth-child(even) .weekend-info {
        order: initial;
    }

    .weekend-photo img {
        height: 260px;
        object-fit: contain;
    }

    .weekend-info {
        padding: 10px 0;
        text-align: center;
    }

    .weekend-info h3 {
        font-size: 55px;
    }

    .weekend-rule {
        margin: 22px auto;
    }

    .weekend-description {
        margin-left: auto;
        margin-right: auto;
    }

    .weekend-dress {
        align-items: center;
    }

    .weekend-closing {
        margin-top: 40px;
        font-size: 36px;
    }

}

/* ==========================================
   KING & PETALS — MEMORIES GALLERY
========================================== */

.memories-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 100px 0 115px;

    color: #fff;

    background:
        radial-gradient(
            ellipse at 0% 15%,
            rgba(190, 145, 66, 0.17),
            transparent 40%
        ),
        radial-gradient(
            ellipse at 100% 80%,
            rgba(190, 145, 66, 0.12),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #171410 0%,
            #090909 48%,
            #19140e 100%
        );
}

/* Fine decorative border */

.memories-section::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(207, 167, 95, 0.18);
    pointer-events: none;
    z-index: -1;
}

/* Large background ornaments */

.memories-decoration {
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(180px, 25vw, 390px);
    line-height: 1;
    color: rgba(205, 164, 90, 0.07);
    pointer-events: none;
    z-index: -1;
}

.memories-decoration-left {
    left: -90px;
    top: 90px;
    transform: rotate(-25deg);
}

.memories-decoration-right {
    right: -90px;
    bottom: 80px;
    transform: rotate(155deg);
}

/* MAIN HEADING */

.memories-heading {
    max-width: 760px;
    margin: 0 auto 75px;
    padding: 0 20px;
    text-align: center;
}

.memories-eyebrow,
.memories-gallery-kicker {
    color: #c6a15b;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
}

.memories-ornament {
    display: block;
    margin: 22px auto;
    color: #c6a15b;
    font-size: 24px;
}

.memories-heading h2 {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.1;
}

.memories-heading h2 em {
    color: #d8b779;
    font-weight: 400;
}

.memories-heading > p {
    color: #c1b8a9;
    font-size: 14px;
    line-height: 1.8;
}

/* INDIVIDUAL GALLERIES */

.memories-gallery {
    width: min(1300px, 100%);
    margin: 0 auto 85px;
}

.memories-gallery:last-of-type {
    margin-bottom: 0;
}

.memories-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding: 0 5% 26px;
}

.memories-gallery-header h3 {
    margin: 12px 0 0;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
}

.memories-gallery-header h3 em {
    color: #d8b779;
    font-weight: 400;
}

/* ARROWS */

.memories-gallery-arrows {
    display: flex;
    gap: 12px;
}

.memories-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(214, 175, 100, 0.6);
    border-radius: 50%;
    background: transparent;
    color: #e7c889;
    font-size: 23px;
    cursor: pointer;
    transition: background .25s, color .25s;
}

.memories-arrow:hover {
    background: #c6a15b;
    color: #101010;
}

/* SWIPEABLE TRACK */

.memories-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;

    padding: 12px 5% 25px;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.memories-track::-webkit-scrollbar {
    display: none;
}

/* PHOTO CARDS */

.memories-photo-card,
.memories-video-card {
    position: relative;
    flex: 0 0 clamp(250px, 31vw, 390px);
    height: 340px;

    padding: 0;
    border: 1px solid rgba(211, 170, 97, 0.35);
    border-radius: 3px;
    overflow: hidden;

    background: #1b1814;
    color: #fff;
    cursor: pointer;
    scroll-snap-align: start;

    transition: transform .3s, border-color .3s;
}

.memories-photo-card:hover,
.memories-video-card:hover {
    transform: translateY(-5px);
    border-color: #d8b779;
}

.memories-photo-card img,
.memories-video-card video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* PHOTO HOVER */

.memories-card-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity .3s;
}

.memories-photo-card:hover .memories-card-overlay {
    opacity: 1;
}

.memories-card-overlay span {
    padding: 13px 20px;
    border: 1px solid #e2c68f;
    font-size: 10px;
    letter-spacing: 2px;
}

/* VIDEO CARDS */

.memories-video-card {
    flex-basis: clamp(270px, 42vw, 510px);
    height: 310px;
}

.memories-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 0, 0, 0.7)
    );
    pointer-events: none;
}

.memories-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: grid;
    place-items: center;

    width: 66px;
    height: 66px;
    border: 1px solid #d8b779;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: #e8c889;
    font-size: 20px;
    z-index: 1;
}

.memories-video-title {
    position: absolute;
    bottom: 20px;
    left: 22px;
    right: 22px;
    text-align: left;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    z-index: 1;
}

/* SWIPE HINT */

.memories-swipe-hint {
    margin: 15px 0 0;
    color: #a99066;
    font-size: 9px;
    letter-spacing: 3px;
    text-align: center;
}

/* ==========================================
   FULLSCREEN LIGHTBOX
========================================== */

.memories-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(5, 5, 5, 0.97);
    color: #fff;
}

.memories-lightbox[hidden] {
    display: none !important;
}

.lightbox-stage {
    display: flex;
    align-items: center;
    justify-content: center;

    width: min(1100px, 82vw);
    height: min(80vh, 850px);
}

.lightbox-stage img,
.lightbox-stage video {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-stage video {
    width: 100%;
    max-height: 78vh;
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    display: grid;
    place-items: center;

    border: 1px solid rgba(214, 175, 100, 0.6);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.5);
    color: #e7c889;

    cursor: pointer;
    z-index: 2;
}

.lightbox-close {
    top: 24px;
    right: 28px;
    width: 46px;
    height: 46px;
    font-size: 30px;
}

.lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 25px;
}

.lightbox-prev {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    background: #c6a15b;
    color: #080808;
}

.lightbox-counter {
    position: absolute;
    top: 35px;
    left: 30px;
    color: #d8b779;
    font-size: 12px;
    letter-spacing: 2px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 15%;
    right: 15%;
    margin: 0;
    text-align: center;
    color: #e2d3b8;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
}

/* MOBILE */

@media (max-width: 768px) {

    .memories-section {
        padding: 65px 0 75px;
    }

    .memories-heading {
        margin-bottom: 45px;
    }

    .memories-gallery {
        margin-bottom: 60px;
    }

    .memories-gallery-header {
        padding: 0 20px 20px;
    }

    .memories-gallery-kicker {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .memories-gallery-arrows {
        gap: 7px;
    }

    .memories-arrow {
        width: 38px;
        height: 38px;
    }

    .memories-track {
        gap: 12px;
        padding: 10px 20px 20px;
    }

    .memories-photo-card {
        flex-basis: 82vw;
        height: 330px;
    }

    .memories-video-card {
        flex-basis: 86vw;
        height: 240px;
    }

    .lightbox-stage {
        width: 100vw;
        height: 75vh;
        padding: 0 12px;
    }

    .lightbox-arrow {
        top: auto;
        bottom: 65px;
        transform: none;
        width: 43px;
        height: 43px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-caption {
        bottom: 25px;
        left: 75px;
        right: 75px;
        font-size: 17px;
    }

    .lightbox-close {
        top: 18px;
        right: 18px;
    }

    .lightbox-counter {
        top: 32px;
        left: 20px;
    }

}

/* ==========================================
   KING & PETALS
   FINAL RSVP SECTION
========================================== */

.royal-rsvp {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 105px 20px 115px;

    background:
        radial-gradient(
            ellipse at 5% 10%,
            rgba(198, 161, 91, 0.16),
            transparent 42%
        ),
        radial-gradient(
            ellipse at 95% 85%,
            rgba(198, 161, 91, 0.17),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #fffdf8 0%,
            #f7eddb 55%,
            #fffaf2 100%
        );

    color: #24201c;
    text-align: center;
}

/* Large decorative ornaments */

.rsvp-ornament {
    position: absolute;
    z-index: -1;

    color: rgba(184, 145, 77, 0.12);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(170px, 25vw, 370px);
    line-height: 1;

    pointer-events: none;
}

.rsvp-ornament-left {
    top: 30px;
    left: -75px;
    transform: rotate(-25deg);
}

.rsvp-ornament-right {
    right: -75px;
    bottom: 30px;
    transform: rotate(155deg);
}

/* Main invitation frame */

.royal-rsvp-inner {
    position: relative;

    width: min(1120px, 100%);
    margin: 0 auto;

    padding: 75px 55px 65px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid #c6a15b;

    box-shadow:
        0 25px 70px rgba(83, 59, 25, 0.08);
}

.royal-rsvp-inner::before {
    content: "";
    position: absolute;
    inset: 12px;

    border: 1px solid rgba(198, 161, 91, 0.35);

    pointer-events: none;
}

/* Heading */

.rsvp-top-symbol {
    display: block;
    margin-bottom: 25px;

    color: #c6a15b;
    font-size: 27px;
}

.rsvp-eyebrow {
    margin: 0;

    color: #a77e40;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.royal-rsvp h2 {
    margin: 20px 0;

    color: #1e1b17;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(65px, 8vw, 105px);
    font-weight: 400;
    line-height: 1;
}

.royal-rsvp h2 em {
    color: #b48b49;
    font-weight: 400;
}

.rsvp-intro {
    max-width: 520px;
    margin: 0 auto;

    color: #6d655b;
    font-size: 15px;
    line-height: 1.9;
}

/* Divider */

.rsvp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin: 38px auto;

    color: #c6a15b;
    font-size: 22px;
}

.rsvp-divider span {
    width: 85px;
    height: 1px;

    background: rgba(198, 161, 91, 0.5);
}

/* Event details */

.rsvp-event-name {
    margin: 0 0 10px;

    color: #24201c;

    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
}

.rsvp-event-date {
    margin: 0;

    color: #8d744f;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.rsvp-instruction {
    max-width: 500px;
    margin: 45px auto 30px;

    color: #6d655b;
    font-size: 14px;
    line-height: 1.8;
}

/* Contact cards */

.rsvp-contacts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    margin: 0 auto;
}

.rsvp-contact {
    min-width: 0;
    padding: 32px 18px;

    background: #fffdf9;

    border: 1px solid rgba(198, 161, 91, 0.45);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.rsvp-contact:hover {
    transform: translateY(-5px);

    border-color: #c6a15b;

    box-shadow:
        0 15px 35px rgba(95, 67, 28, 0.10);
}

.rsvp-contact-symbol {
    display: block;

    color: #c6a15b;
    font-size: 24px;
}

.rsvp-contact h3 {
    margin: 12px 0;

    color: #24201c;

    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
}

.rsvp-phone {
    display: inline-block;

    margin-bottom: 25px;

    color: #77634a;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;

    text-decoration: none;
}

.rsvp-phone:hover {
    color: #b48b49;
}

/* Action buttons */

.rsvp-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.rsvp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 42px;
    padding: 12px 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.rsvp-button:hover {
    transform: translateY(-2px);
}

.rsvp-button-outline {
    border: 1px solid #c6a15b;

    background: transparent;
    color: #29231d;
}

.rsvp-button-outline:hover {
    background: #29231d;
    color: #fff;
}

.rsvp-button-gold {
    border: 1px solid #c6a15b;

    background: #c6a15b;
    color: #17130d;
}

.rsvp-button-gold:hover {
    background: #a98443;
    color: #fff;
}

/* Closing signature */

.rsvp-closing {
    margin-top: 65px;
}

.rsvp-closing > p {
    margin: 0;

    color: #777066;

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-style: italic;
}

.rsvp-closing h3 {
    margin: 8px 0 20px;

    color: #24201c;

    font-family: "Great Vibes", cursive;
    font-size: clamp(45px, 6vw, 68px);
    font-weight: 400;
}

.rsvp-closing h3 span {
    color: #b48b49;
}

.rsvp-closing > span {
    color: #c6a15b;
    font-size: 24px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .royal-rsvp-inner {
        padding: 65px 30px;
    }

    .rsvp-contacts {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .royal-rsvp {
        padding: 65px 12px 75px;
    }

    .royal-rsvp-inner {
        padding: 55px 20px 45px;
    }

    .royal-rsvp-inner::before {
        inset: 7px;
    }

    .rsvp-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .royal-rsvp h2 {
        font-size: 68px;
    }

    .rsvp-intro {
        font-size: 13px;
    }

    .rsvp-event-name {
        font-size: 30px;
    }

    .rsvp-event-date {
        font-size: 10px;
        line-height: 1.8;
    }

    .rsvp-instruction {
        margin-top: 35px;
        font-size: 13px;
    }

    .rsvp-contact {
        padding: 25px 14px;
    }

    .rsvp-actions {
        flex-wrap: wrap;
    }

    .rsvp-button {
        flex: 1;
    }

    .rsvp-closing {
        margin-top: 45px;
    }

    .rsvp-ornament {
        font-size: 160px;
    }

}
/* ==========================================
   COMPACT RSVP — OVERRIDE
========================================== */

.royal-rsvp {
    padding: 35px 16px 40px;
}

.royal-rsvp-inner {
    max-width: 1000px;
    padding: 30px 35px;
}

.rsvp-top-symbol {
    margin-bottom: 8px;
    font-size: 18px;
}

.rsvp-eyebrow {
    font-size: 9px;
}

.royal-rsvp h2 {
    font-size: clamp(42px, 5vw, 62px);
    margin: 8px 0;
}

.rsvp-intro {
    font-size: 13px;
    line-height: 1.5;
}

.rsvp-divider {
    margin: 15px auto;
}

.rsvp-event-name {
    font-size: 26px;
    margin-bottom: 4px;
}

.rsvp-instruction {
    margin: 18px auto 15px;
}

.rsvp-contacts {
    gap: 12px;
}

.rsvp-contact {
    padding: 16px 12px;
}

.rsvp-contact-symbol {
    font-size: 16px;
}

.rsvp-contact h3 {
    font-size: 24px;
    margin: 5px 0;
}

.rsvp-phone {
    margin-bottom: 12px;
}

.rsvp-button {
    min-height: 36px;
    padding: 9px 11px;
}

.rsvp-closing {
    margin-top: 20px;
}

.rsvp-closing > p {
    font-size: 18px;
}

.rsvp-closing h3 {
    font-size: 38px;
    margin: 0 0 5px;
}

.rsvp-closing > span {
    font-size: 16px;
}

/* MOBILE */

@media (max-width: 600px) {
    .royal-rsvp {
        padding: 25px 10px;
    }

    .royal-rsvp-inner {
        padding: 28px 16px;
    }

    .royal-rsvp h2 {
        font-size: 48px;
    }

    .rsvp-contact {
        padding: 14px 12px;
    }

    .rsvp-instruction {
        margin: 15px auto 12px;
    }

    .rsvp-closing {
        margin-top: 15px;
    }
}

/* ==========================================
   KING & PETALS
   DRAMATIC SCROLL REVEAL
========================================== */

html {
    scroll-behavior: smooth;
}

/* Starting state */
.event-body.motion-ready .section-reveal {
    opacity: 0;

    transform:
        translateY(90px)
        scale(0.96);

    filter: blur(8px);

    transition:
        opacity 1.3s ease,
        transform 1.3s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.3s ease;

    will-change: opacity, transform, filter;
}

/* Revealed state */
.event-body.motion-ready .section-reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter: blur(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .event-body.motion-ready .section-reveal,
    .event-body.motion-ready .section-reveal.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

}

/* Footer: left aligned on all screen sizes */

.luxury-footer {
    justify-content: flex-start;
    text-align: left;
}

.luxury-footer .footer-left {
    justify-content: flex-start;
    text-align: left;
    margin: 0;
}

@media (max-width: 600px) {
    .luxury-footer {
        padding: 12px 10px;
    }

    .luxury-footer .footer-left {
        flex-wrap: nowrap;
        gap: 5px;
        white-space: nowrap;
        font-size: clamp(6px, 1.65vw, 10px);
    }
}

/* Footer: left aligned on all screen sizes */

.luxury-footer {
    justify-content: flex-start;
    text-align: left;
}

.luxury-footer .footer-left {
    justify-content: flex-start;
    text-align: left;
    margin: 0;
}

@media (max-width: 600px) {
    .luxury-footer {
        padding: 12px 10px;
    }

    .luxury-footer .footer-left {
        flex-wrap: nowrap;
        gap: 5px;
        white-space: nowrap;
        font-size: clamp(6px, 1.65vw, 10px);
    }
}

/* FINAL FOOTER ALIGNMENT — LANDING AND EVENT PAGES */

.luxury-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.luxury-footer .footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    text-align: left;
}

@media (max-width: 700px) {
    .luxury-footer {
        flex-direction: row;
        align-items: center;
        padding: 12px 4%;
    }

    .luxury-footer .footer-left {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 5px;
        white-space: nowrap;
        font-size: clamp(6px, 1.7vw, 10px);
        letter-spacing: 0;
    }
}

/* FINAL FOOTER ALIGNMENT — LANDING AND EVENT PAGES */

.luxury-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.luxury-footer .footer-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    text-align: left;
}

@media (max-width: 700px) {
    .luxury-footer {
        flex-direction: row;
        align-items: center;
        padding: 12px 4%;
    }

    .luxury-footer .footer-left {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 5px;
        white-space: nowrap;
        font-size: clamp(6px, 1.7vw, 10px);
        letter-spacing: 0;
    }
}