:root {
    --cream: #f6f1ea;
    --cream-dark: #ebe1d5;
    --brown: #3a302a;
    --muted: #85776b;
    --line: #d8ccc0;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--brown);
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.cover {
    height: 100svh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.cover-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(45, 35, 29, .25),
            rgba(45, 35, 29, .68)
        ),
        radial-gradient(
            circle at 50% 35%,
            #cdb9a4,
            #88705d 48%,
            #3d3129
        );

    transform: scale(1.05);
}

.cover-bg::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle,
            transparent 30%,
            rgba(0,0,0,.25)
        );
}

.cover-content {
    position: relative;
    text-align: center;
    padding: 30px;
    z-index: 2;

    animation: reveal 1.5s ease forwards;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .35em;
    font-weight: 500;
    margin-bottom: 22px;
}

.cover h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(70px, 13vw, 145px);
    line-height: .72;
    font-weight: 400;
    margin: 0;
}

.cover h1 span {
    display: block;
    font-size: .45em;
    font-style: italic;
    margin: 22px 0;
}

.cover-date {
    margin-top: 42px;
    letter-spacing: .3em;
    font-size: 12px;
}

.cover button {
    margin-top: 35px;
    padding: 15px 30px;

    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50px;

    background: rgba(255,255,255,.08);
    color: white;

    font-family: inherit;
    font-size: 11px;
    letter-spacing: .18em;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition: .3s;
}

.cover button:hover {
    background: white;
    color: var(--brown);
}

.invitation {
    overflow: hidden;
}

.section {
    max-width: 900px;
    margin: auto;
    padding: 110px 25px;
    text-align: center;
}

.section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(45px, 7vw, 72px);
    font-weight: 500;
    line-height: .95;
    margin: 0 0 25px;
}

.section p {
    max-width: 650px;
    margin: auto;

    color: var(--muted);

    line-height: 2;
    font-size: 14px;
}

.couple {
    margin-top: 60px;

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

    gap: 50px;
}

.couple div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.couple strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 500;
}

.couple small {
    color: var(--muted);
    font-size: 10px;
}

.couple > span {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
}

.countdown-section {
    background: var(--cream-dark);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 7vw, 75px);
    margin-top: 55px;
}

.countdown div {
    min-width: 65px;
}

.countdown b {
    display: block;

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

.countdown span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .2em;
}

.story {
    min-height: 550px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    margin: 50px 0 35px;
}

.event-card {
    padding: 45px 25px;
    border: 1px solid var(--line);
}

.event-card > span {
    font-size: 25px;
}

.event-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 500;
    margin: 15px 0;
}

.venue {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.venue strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.venue span {
    color: var(--muted);
    font-size: 12px;
}

.venue a {
    color: var(--brown);
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: .1em;
}

.closing {
    padding-bottom: 130px;
}

.ornament {
    font-size: 24px;
    margin-bottom: 25px;
}

.closing h2 {
    margin-top: 40px;
}

footer {
    padding: 75px 25px;

    background: #302923;
    color: white;

    text-align: center;
}

footer span {
    display: block;

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

footer strong {
    display: block;

    margin-top: 5px;

    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 400;
}

footer small {
    display: block;
    margin-top: 35px;

    opacity: .45;
    font-size: 9px;
    letter-spacing: .15em;
}

@keyframes reveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width: 600px) {

    .cover {
        min-height: 600px;
    }

    .cover h1 {
        font-size: 72px;
    }

    .section {
        padding: 85px 20px;
    }

    .couple {
        flex-direction: column;
        gap: 18px;
    }

    .couple > span {
        font-size: 28px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        gap: 14px;
    }

    .countdown div {
        min-width: 55px;
    }

    .countdown b {
        font-size: 40px;
    }

}

.music-toggle {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: 1px solid rgba(58,48,42,.25);

    background: rgba(246,241,234,.9);
    color: #3a302a;

    font-size: 20px;

    cursor: pointer;

    z-index: 9999;

    backdrop-filter: blur(10px);

    box-shadow: 0 8px 25px rgba(0,0,0,.12);

    transition: .3s;
}

.music-toggle:hover {
    transform: scale(1.08);
}

.music-toggle.playing {
    animation: musicPulse 2s infinite;
}

@keyframes musicPulse {

    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }

}

/* ==============================
   FALLING FLOWER PETALS
================================ */

.petals {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 9998;
}

.petal {
    position: absolute;
    top: -40px;

    width: 12px;
    height: 18px;

    background: rgba(255, 235, 228, .85);

    border-radius: 80% 20% 80% 20%;

    filter: blur(.1px);

    animation:
        petalFall linear forwards,
        petalSway ease-in-out infinite alternate;

    opacity: 0;
}

@keyframes petalFall {

    0% {
        transform:
            translate3d(0, -40px, 0)
            rotate(0deg);

        opacity: 0;
    }

    10% {
        opacity: .85;
    }

    90% {
        opacity: .75;
    }

    100% {
        transform:
            translate3d(var(--fall-x), 110vh, 0)
            rotate(720deg);

        opacity: 0;
    }

}

@keyframes petalSway {

    from {
        margin-left: -25px;
    }

    to {
        margin-left: 25px;
    }

}

/* ==========================================
   OZIERNAH — PREMIUM WEDDING EVENT
========================================== */

.event {
    position: relative;
    max-width: 1100px;
    overflow: hidden;
}


/* INTRO */

.event-intro {
    max-width: 650px !important;
    margin: 0 auto 45px !important;
    color: var(--muted);
    line-height: 1.9 !important;
}


/* ORNAMENT */

.event-ornament {
    margin: -8px auto 15px;

    color: #c9907b;

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

.event-ornament::before,
.event-ornament::after {
    content: "";

    display: inline-block;

    width: 70px;
    height: 1px;

    vertical-align: middle;

    background: linear-gradient(
        90deg,
        transparent,
        #d8ad9c
    );
}

.event-ornament::after {
    background: linear-gradient(
        90deg,
        #d8ad9c,
        transparent
    );
}


/* ==========================================
   EVENT GRID
========================================== */

.event-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;

    max-width: 1020px;

    margin: 55px auto 45px;
}


/* ==========================================
   EVENT CARD
========================================== */

.event-card {
    position: relative;

    min-height: 440px;

    padding: 62px 45px 50px;

    border-radius: 20px;

    border: 1px solid #e6cfc2;

    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(242,190,174,.15),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 85%,
            rgba(236,190,173,.13),
            transparent 30%
        ),
        rgba(255,255,255,.5);

    box-shadow:
        0 18px 45px rgba(90,65,52,.08);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


/* INNER BORDER */

.event-card::before {
    content: "";

    position: absolute;

    inset: 10px;

    border: 1px solid rgba(211,169,151,.45);

    border-radius: 13px;

    pointer-events: none;
}


.event-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(90,65,52,.13);
}


/* ==========================================
   FLORAL CORNERS
========================================== */

.floral-corner {
    position: absolute;

    font-family: Georgia, serif;

    color: #d99380;

    font-size: 65px;

    opacity: .20;

    line-height: 1;
}

.floral-tl {
    top: 3px;
    left: 10px;
}

.floral-tr {
    top: 3px;
    right: 10px;

    transform: scaleX(-1);
}


/* ==========================================
   ICON
========================================== */

.event-icon-circle {
    position: relative;
    z-index: 2;

    width: 74px;
    height: 74px;

    margin: 0 auto 22px;

    display: flex;

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

    border-radius: 50%;

    background:
        rgba(255,250,247,.9);

    border: 1px solid #e5c6b7;

    color: #c98d78;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;

    box-shadow:
        0 8px 25px rgba(100,70,55,.09);
}


/* ==========================================
   TITLE
========================================== */

.event-card h3 {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #3a2e28;

    font-family: "Cormorant Garamond", serif;

    font-size: 45px;

    font-weight: 500;

    line-height: 1;
}


/* ==========================================
   CARD ORNAMENT
========================================== */

.card-ornament {
    margin: 16px auto 30px;

    color: #ce9a86;

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;
}


/* ==========================================
   DETAILS
========================================== */

.event-details {
    position: relative;
    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 22px;

    max-width: 255px;

    margin: auto;

    text-align: left;
}


.event-detail {
    display: flex;

    align-items: center;

    gap: 14px;
}


.detail-icon {
    flex: 0 0 39px;

    width: 39px;
    height: 39px;

    display: flex;

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

    border-radius: 50%;

    background: rgba(255,255,255,.8);

    border: 1px solid #e6cbbf;

    color: #cf907d;

    font-size: 15px;
}


.event-detail > div:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.event-detail small {
    color: #b08d7e;

    font-size: 9px;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.event-detail strong {
    color: #4b3b33;

    font-family: "Cormorant Garamond", serif;

    font-size: 21px;

    font-weight: 500;
}


.event-detail span {
    color: #89776e;

    font-size: 11px;
}


/* ==========================================
   CARD BOTTOM
========================================== */

.card-bottom-ornament {
    position: absolute;

    bottom: 17px;

    left: 0;
    right: 0;

    text-align: center;

    color: #d2a08e;

    font-family: "Cormorant Garamond", serif;

    font-size: 16px;

    opacity: .8;
}


/* ==========================================
   VENUE CARD
========================================== */

.venue-card {
    position: relative;

    max-width: 800px;

    margin: 20px auto 0;

    padding: 55px 30px 48px;

    text-align: center;

    border-radius: 22px;

    border: 1px solid #e4cec2;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(239,192,177,.18),
            transparent 40%
        ),
        rgba(255,255,255,.58);

    box-shadow:
        0 20px 55px rgba(90,65,52,.09);

    overflow: hidden;
}


.venue-card::before {
    content: "";

    position: absolute;

    top: 0;

    left: 15%;
    right: 15%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d6a18d,
            transparent
        );
}


/* ==========================================
   VENUE ICON
========================================== */

.venue-icon {
    width: 68px;
    height: 68px;

    margin: -5px auto 18px;

    display: flex;

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

    border-radius: 50%;

    background: #fffaf7;

    border: 1px solid #e4c8ba;

    color: #cc967f;

    font-size: 29px;

    box-shadow:
        0 8px 25px rgba(100,70,55,.1);
}


.venue-ornament {
    margin-bottom: 12px;

    color: #d09b87;

    font-family: "Cormorant Garamond", serif;

    font-size: 17px;
}


.venue-card h3 {
    margin: 0;

    color: #3b2f29;

    font-family: "Cormorant Garamond", serif;

    font-size: 40px;

    font-weight: 500;
}


.venue-card p {
    max-width: 600px !important;

    margin: 10px auto 27px !important;

    color: #89766c !important;

    font-size: 12px !important;

    line-height: 1.8 !important;
}


/* ==========================================
   GOOGLE MAPS BUTTON
========================================== */

.maps-button {
    display: inline-flex;

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

    gap: 10px;

    min-width: 230px;

    padding: 15px 27px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #d39783,
            #bd776c
        );

    color: white !important;

    text-decoration: none;

    font-size: 11px;

    letter-spacing: .08em;

    box-shadow:
        0 10px 28px rgba(170,100,85,.22);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.maps-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(170,100,85,.3);
}


.maps-button span {
    font-size: 17px;
}


.maps-button b {
    font-size: 16px;

    font-weight: 400;
}


/* ==========================================
   BACKGROUND FLORAL DECOR
========================================== */

.event-background-flower {
    position: absolute;

    font-family: Georgia, serif;

    font-size: 230px;

    color: #e2a695;

    opacity: .055;

    pointer-events: none;
}


.event-flower-left {
    left: -110px;
    top: 220px;
}


.event-flower-right {
    right: -110px;
    top: 470px;

    transform: scaleX(-1);
}


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

@media (max-width: 700px) {

    .event {
        padding-left: 17px;
        padding-right: 17px;
    }

    .event-grid {
        grid-template-columns: 1fr;

        gap: 22px;

        margin-top: 40px;
    }

    .event-card {
        min-height: 420px;

        padding: 60px 25px 50px;
    }

    .event-card h3 {
        font-size: 39px;
    }

    .event-icon-circle {
        width: 68px;
        height: 68px;
    }

    .venue-card {
        padding: 48px 18px 40px;
    }

    .venue-card h3 {
        font-size: 33px;
    }

    .venue-decoration {
        font-size: 14px;
    }

    .maps-button {
        width: 100%;
        max-width: 280px;
    }

    .event-background-flower {
        font-size: 140px;
    }

}

/* ==================================================
   OZIERNAH — OUR STORY JOURNEY
================================================== */

.story {
    position: relative;
    overflow: hidden;
    padding-top: 130px;
    padding-bottom: 150px;
}


/* INTRO */

.story-intro {
    max-width: 760px !important;
    margin: 0 auto !important;
    line-height: 1.95 !important;
}


/* ORNAMENT */

.story-ornament {
    position: relative;

    width: 190px;

    margin: -5px auto 18px;

    color: #c98d79;

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    text-align: center;
}

.story-ornament::before,
.story-ornament::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 72px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d9aa99
        );
}

.story-ornament::before {
    right: 100%;
}

.story-ornament::after {
    left: 100%;

    background:
        linear-gradient(
            90deg,
            #d9aa99,
            transparent
        );
}


/* ==================================================
   TIMELINE
================================================== */

.story-timeline {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    max-width: 1250px;

    margin: 115px auto 0;

    min-height: 420px;

}


/* ==================================================
   JOURNEY PATH
================================================== */

.story-path {

    position: absolute;

    left: 4%;
    right: 4%;

    top: 125px;

    height: 90px;

    z-index: 0;

    border-top: 2px dashed #dfa998;

    border-radius: 50%;

    transform:
        rotate(
            -2deg
        );

    opacity: .85;
}


/* SECOND CURVE */

.story-path::after {

    content: "";

    position: absolute;

    left: 0;

    top: 12px;

    width: 100%;

    height: 70px;

    border-top: 1px solid rgba(215,157,138,.22);

    border-radius: 50%;

}


/* ==================================================
   STORY ITEM
================================================== */

.story-item {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

}


/* ==================================================
   NODE
================================================== */

.story-node {

    position: relative;

    width: 145px;

    height: 145px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,250,247,.95),
            rgba(250,239,232,.7)
        );

    border: 1px solid #ddb6a6;

    box-shadow:
        0 12px 30px rgba(110,75,58,.09);

}


/* DOUBLE BORDER */

.story-node::before {

    content: "";

    position: absolute;

    inset: 8px;

    border: 1px solid rgba(210,160,143,.45);

    border-radius: 50%;

}


/* ICON */

.story-icon {

    position: relative;

    z-index: 2;

    width: 76px;

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.72);

    border: 1px solid #e5c5b7;

    color: #c88976;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 34px;

}


/* HEART UNDER NODE */

.story-heart {

    position: absolute;

    bottom: -14px;

    left: 50%;

    transform:
        translateX(-50%);

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f8e8df;

    border: 1px solid #dda995;

    color: #c88470;

    font-size: 11px;

    box-shadow:
        0 5px 12px rgba(110,70,55,.08);

}


/* ==================================================
   CONTENT
================================================== */

.story-content {

    max-width: 205px;

    margin-top: 40px;

    text-align: center;

}


.story-number {

    display: block;

    margin-bottom: 5px;

    color: #c99a88;

    font-size: 9px;

    letter-spacing: .25em;

}


.story-content h3 {

    margin: 0 0 9px;

    color: #3c302a;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 29px;

    font-weight: 500;

}


.story-content p {

    margin: 0 !important;

    color: #89766c;

    font-size: 11px !important;

    line-height: 1.75 !important;

}


/* ==================================================
   LITTLE FLOWERS ON PATH
================================================== */

.story-item::after {

    content: "❧";

    position: absolute;

    top: 105px;

    right: -4px;

    color: #d69c88;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;

    opacity: .65;

}

.story-item:last-child::after {
    display: none;
}


/* ==================================================
   BACKGROUND FLORAL VECTOR
================================================== */

.story-flower {

    position: absolute;

    display: flex;

    flex-direction: column;

    color: #d99d8a;

    opacity: .12;

    pointer-events: none;

}


.story-flower span {

    display: block;

    font-family:
        Georgia,
        serif;

}


.story-flower-left {

    left: -20px;

    bottom: 80px;

    transform:
        rotate(-12deg);

    font-size: 110px;

}


.story-flower-right {

    right: -20px;

    top: 120px;

    transform:
        scaleX(-1)
        rotate(-12deg);

    font-size: 110px;

}


/* ==================================================
   SMALL DECORATIVE DOTS
================================================== */

.story-timeline::before,
.story-timeline::after {

    content: "·  ·  ·";

    position: absolute;

    color: #d9a291;

    font-size: 24px;

    letter-spacing: 8px;

    opacity: .5;

}


.story-timeline::before {

    left: 0;

    top: 205px;

}


.story-timeline::after {

    right: 0;

    top: 105px;

}


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

@media (max-width: 800px) {

    .story {

        padding-top: 90px;

        padding-bottom: 100px;

    }


    .story-timeline {

        display: flex;

        flex-direction: column;

        gap: 55px;

        margin-top: 65px;

    }


    .story-path {

        left: 50%;

        right: auto;

        top: 70px;

        width: 1px;

        height: calc(100% - 100px);

        border-top: 0;

        border-left: 2px dashed #dfa998;

        transform: none;

    }


    .story-path::after {

        display: none;

    }


    .story-item {

        width: 100%;

    }


    .story-node {

        width: 120px;

        height: 120px;

    }


    .story-icon {

        width: 65px;

        height: 65px;

        font-size: 29px;

    }


    .story-content {

        margin-top: 28px;

        max-width: 280px;

    }


    .story-content h3 {

        font-size: 28px;

    }


    .story-content p {

        font-size: 11px !important;

    }


    .story-item::after {

        display: none;

    }


    .story-flower-left {

        left: -45px;

        bottom: 20px;

        font-size: 80px;

    }


    .story-flower-right {

        right: -45px;

        top: 80px;

        font-size: 80px;

    }

}

/* ==================================================
   OZIERNAH — PREMIUM COUNTDOWN
================================================== */

.countdown-section {
    position: relative;

    min-height: 720px;

    display: flex;

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

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255,255,255,.35),
            transparent 55%
        ),
        linear-gradient(
            135deg,
            #eee1d3,
            #e8dacb
        );

    border-top: 1px solid rgba(255,255,255,.5);
    border-bottom: 1px solid rgba(210,185,166,.25);
}


/* SOFT GLOW */

.countdown-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.45),
            transparent 68%
        );

    pointer-events: none;
}


/* CONTENT */

.countdown-inner {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1200px;

    padding: 100px 25px;

    text-align: center;
}


/* EYEBROW */

.countdown-inner .eyebrow {
    margin-bottom: 12px;

    color: #715b4d;

    letter-spacing: .42em;

    font-size: 10px;
}


/* ==================================================
   ORNAMENT
================================================== */

.countdown-ornament {
    display: flex;

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

    gap: 14px;

    margin: 0 auto 12px;

    color: #c99480;

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;
}

.countdown-ornament::before,
.countdown-ornament::after {
    content: "";

    width: 80px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d1a08e
        );
}

.countdown-ornament::after {
    background:
        linear-gradient(
            90deg,
            #d1a08e,
            transparent
        );
}

.countdown-ornament i {
    font-style: normal;

    font-size: 25px;

    animation: heartFloat 2.5s ease-in-out infinite;
}


/* TITLE */

.countdown-inner h2 {
    position: relative;

    margin: 0;

    color: #3a2d26;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: clamp(52px, 7vw, 82px);

    line-height: .95;

    font-weight: 500;
}


/* SUBTITLE */

.countdown-subtitle {
    max-width: 620px;

    margin: 25px auto 0 !important;

    color: #856f62 !important;

    font-size: 13px !important;

    line-height: 1.8 !important;
}


/* ==================================================
   COUNTDOWN GRID
================================================== */

.countdown {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

    max-width: 900px;

    margin: 55px auto 0;
}


/* ==================================================
   CARD
================================================== */

.countdown-card {
    position: relative;

    min-height: 260px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    padding: 25px 15px 20px;

    border-radius: 18px;

    border: 1px solid rgba(207,155,136,.55);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.65),
            rgba(250,239,232,.48)
        );

    box-shadow:
        0 16px 35px rgba(100,72,58,.08);

    backdrop-filter: blur(8px);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.countdown-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 45px rgba(100,72,58,.14);
}


/* INNER BORDER */

.countdown-card::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 1px solid rgba(210,166,150,.32);

    border-radius: 12px;

    pointer-events: none;
}


/* ==================================================
   ICON
================================================== */

.countdown-icon {
    position: relative;

    z-index: 2;

    width: 62px;
    height: 62px;

    display: flex;

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

    border-radius: 50%;

    border: 1px solid #dfb7a7;

    background:
        rgba(255,250,247,.72);

    color: #ca927e;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

    box-shadow:
        0 6px 18px rgba(100,70,55,.08);

    margin-bottom: 17px;
}


/* ==================================================
   NUMBER
================================================== */

.countdown-card b {
    position: relative;

    z-index: 2;

    display: block;

    margin: 0;

    color: #352923;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 66px;

    line-height: .9;

    font-weight: 500;

    font-variant-numeric:
        tabular-nums;
}


/* LABEL */

.countdown-card > span {
    position: relative;

    z-index: 2;

    margin-top: 12px;

    color: #806b5f;

    font-size: 10px;

    letter-spacing: .24em;

    text-transform: uppercase;
}


/* CARD ORNAMENT */

.countdown-card-ornament {
    position: absolute;

    bottom: 15px;

    left: 0;
    right: 0;

    color: #d29e8c;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 15px;

    opacity: .75;
}


/* ==================================================
   BOTTOM ORNAMENT
================================================== */

.countdown-bottom-ornament {
    display: flex;

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

    gap: 14px;

    margin-top: 48px;

    color: #cf9b87;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;
}

.countdown-bottom-ornament::before,
.countdown-bottom-ornament::after {
    content: "";

    width: 75px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d3a18e
        );
}

.countdown-bottom-ornament::after {
    background:
        linear-gradient(
            90deg,
            #d3a18e,
            transparent
        );
}

.countdown-bottom-ornament i {
    font-style: normal;

    font-size: 17px;
}


/* ==================================================
   FLORAL DECORATION
================================================== */

.countdown-floral {
    position: absolute;

    z-index: 2;

    width: 260px;
    height: 520px;

    color: #d39b87;

    pointer-events: none;

    opacity: .38;
}


/* LEFT */

.countdown-floral-left {
    left: -30px;
    bottom: -90px;

    transform:
        rotate(-10deg);
}


/* RIGHT */

.countdown-floral-right {
    right: -30px;
    top: -70px;

    transform:
        scaleX(-1)
        rotate(-10deg);
}


/* STEM */

.countdown-floral .stem {
    position: absolute;

    left: 110px;
    bottom: 0;

    font-family: Georgia, serif;

    font-size: 360px;

    font-weight: 100;

    opacity: .3;
}


/* LEAVES */

.countdown-floral .leaf {
    position: absolute;

    font-family: Georgia, serif;

    font-size: 65px;

    opacity: .45;
}

.countdown-floral .leaf-1 {
    left: 65px;
    bottom: 180px;

    transform:
        rotate(-30deg);
}

.countdown-floral .leaf-2 {
    left: 145px;
    bottom: 255px;

    transform:
        rotate(25deg);
}


/* FLOWER */

.countdown-floral .flower {
    position: absolute;

    left: 40px;
    bottom: 85px;

    color: #db9c87;

    font-family: Georgia, serif;

    font-size: 145px;

    opacity: .45;

    animation:
        flowerFloat 5s ease-in-out infinite;
}


/* ==================================================
   PETALS IN COUNTDOWN
================================================== */

.countdown-section .petal {
    opacity: .75;
}


/* ==================================================
   ANIMATIONS
================================================== */

@keyframes heartFloat {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

}

@keyframes flowerFloat {

    0%, 100% {
        transform:
            rotate(-3deg)
            translateY(0);
    }

    50% {
        transform:
            rotate(3deg)
            translateY(-8px);
    }

}


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

@media (max-width: 900px) {

    .countdown {
        max-width: 700px;

        gap: 15px;
    }

    .countdown-card {
        min-height: 230px;
    }

    .countdown-card b {
        font-size: 55px;
    }

    .countdown-floral {
        opacity: .2;

        transform: scale(.75);
    }

}


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

@media (max-width: 600px) {

    .countdown-section {
        min-height: auto;
    }

    .countdown-inner {
        padding: 90px 18px;
    }

    .countdown-inner h2 {
        font-size: 48px;
    }

    .countdown-subtitle {
        padding: 0 15px;

        font-size: 12px !important;
    }

    .countdown {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;

        margin-top: 40px;
    }

    .countdown-card {
        min-height: 210px;

        padding-top: 22px;
    }

    .countdown-icon {
        width: 52px;
        height: 52px;

        font-size: 23px;

        margin-bottom: 15px;
    }

    .countdown-card b {
        font-size: 52px;
    }

    .countdown-card > span {
        font-size: 8px;
    }

    .countdown-floral {
        opacity: .12;

        transform: scale(.55);
    }

    .countdown-floral-left {
        left: -100px;
        bottom: -100px;
    }

    .countdown-floral-right {
        right: -100px;
        top: -100px;
    }

}

/* ==================================================
   OZIERNAH — PREMIUM INTRO / COUPLE
================================================== */

.intro {
    position: relative;

    min-height: 760px;

    display: flex;

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

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at center,
            rgba(255,255,255,.42),
            transparent 62%
        );
}


/* CONTENT */

.intro-content {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1100px;

    padding: 110px 25px;

    text-align: center;
}


/* EYEBROW */

.intro-content .eyebrow {
    margin-bottom: 12px;

    font-size: 10px;

    letter-spacing: .42em;

    color: #5d4b40;
}


/* ==================================================
   TOP ORNAMENT
================================================== */

.intro-ornament {
    display: flex;

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

    gap: 15px;

    margin-bottom: 15px;

    color: #ce9985;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;
}


.intro-ornament::before,
.intro-ornament::after {

    content: "";

    width: 85px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d9aa99
        );
}


.intro-ornament::after {

    background:
        linear-gradient(
            90deg,
            #d9aa99,
            transparent
        );
}


.intro-ornament i {

    font-style: normal;

    font-size: 27px;

    animation:
        introHeart 3s ease-in-out infinite;
}


/* ==================================================
   TITLE
================================================== */

.intro-content h2 {

    margin: 0;

    color: #352923;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(52px, 6.8vw, 82px);

    font-weight: 500;

    line-height: .95;

    letter-spacing: -.02em;
}


/* ==================================================
   DIVIDER
================================================== */

.intro-divider {

    display: flex;

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

    gap: 14px;

    margin: 25px auto 20px;
}


.intro-divider span {

    display: block;

    width: 90px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d7a291
        );
}


.intro-divider span:last-child {

    background:
        linear-gradient(
            90deg,
            #d7a291,
            transparent
        );
}


.intro-divider i {

    color: #ce907c;

    font-style: normal;

    font-size: 13px;
}


/* ==================================================
   DESCRIPTION
================================================== */

.intro-text {

    max-width: 680px;

    margin: 0 auto !important;

    color: #806b5f;

    font-size: 13px !important;

    line-height: 1.95 !important;
}


/* ==================================================
   COUPLE
================================================== */

.couple {

    position: relative;

    display: flex;

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

    gap: 55px;

    margin-top: 65px;
}


/* ==================================================
   PERSON
================================================== */

.couple-person {

    position: relative;

    width: 255px;

}


.couple-frame {

    position: relative;

    width: 225px;

    height: 225px;

    margin: auto;

    display: flex;

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

    border-radius: 50%;

    border: 1px solid #d8ad9c;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.65),
            rgba(250,239,232,.35)
        );

    box-shadow:
        0 15px 40px rgba(100,70,55,.07);
}


/* SECOND CIRCLE */

.couple-frame::before {

    content: "";

    position: absolute;

    inset: 8px;

    border: 1px solid rgba(210,160,143,.42);

    border-radius: 50%;
}


/* SMALL TOP ORNAMENT */

.couple-frame::after {

    content: "❧";

    position: absolute;

    top: -12px;

    left: 50%;

    transform:
        translateX(-50%)
        rotate(90deg);

    color: #d19a87;

    background: #f8f0e9;

    padding: 0 8px;

    font-size: 17px;
}


/* INNER */

.couple-frame-inner {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;
}


/* NAME */

.couple-frame strong {

    color: #3a2d27;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 45px;

    font-weight: 500;

    line-height: 1;
}


/* PARENT LABEL */

.couple-frame small {

    margin-top: 15px;

    color: #b18d7e;

    font-size: 9px;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.couple-frame-inner span {

    color: #806b5f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;
}


/* ==================================================
   AMPERSAND
================================================== */

.couple-and {

    position: relative;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;
}


.couple-and::before,
.couple-and::after {

    content: "";

    position: absolute;

    width: 1px;

    height: 90px;

    background:
        linear-gradient(
            180deg,
            transparent,
            #d8ad9c,
            transparent
        );
}


.couple-and::before {
    left: 0;
}


.couple-and::after {
    right: 0;
}


.couple-and span {

    position: relative;

    z-index: 2;

    color: #c98975;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 50px;

    font-weight: 400;
}


/* ==================================================
   FLOWER BELOW MEDALLION
================================================== */

.couple-flower {

    position: absolute;

    left: 50%;

    bottom: -18px;

    transform:
        translateX(-50%);

    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 50%;

    background: #f7e7de;

    border: 1px solid #d9a795;

    color: #ca8e7a;

    font-size: 17px;
}


/* ==================================================
   BOTTOM ORNAMENT
================================================== */

.intro-bottom {

    display: flex;

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

    gap: 15px;

    margin-top: 65px;

    color: #d09a87;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;
}


.intro-bottom::before,
.intro-bottom::after {

    content: "";

    width: 80px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d6a392
        );
}


.intro-bottom::after {

    background:
        linear-gradient(
            90deg,
            #d6a392,
            transparent
        );
}


.intro-bottom i {

    font-style: normal;

    font-size: 16px;
}


/* ==================================================
   FLORAL BACKGROUND
================================================== */

.intro-floral {

    position: absolute;

    z-index: 1;

    width: 300px;

    height: 650px;

    color: #d49c88;

    pointer-events: none;

    opacity: .22;
}


.intro-floral-left {

    left: -35px;

    bottom: -80px;

    transform:
        rotate(-10deg);
}


.intro-floral-right {

    right: -35px;

    bottom: -80px;

    transform:
        scaleX(-1)
        rotate(-10deg);
}


/* FLOWERS */

.intro-floral .flower {

    position: absolute;

    font-family: Georgia, serif;

}


.intro-floral .flower-main {

    left: 30px;

    bottom: 30px;

    font-size: 170px;

    opacity: .25;
}


.intro-floral .flower-small {

    left: 150px;

    bottom: 190px;

    font-size: 75px;

    opacity: .35;
}


/* BRANCH */

.intro-floral .branch {

    position: absolute;

    left: 110px;

    bottom: 0;

    font-family: Georgia, serif;

    font-size: 420px;

    opacity: .16;

}


/* LEAVES */

.intro-floral .leaf {

    position: absolute;

    font-size: 70px;

    opacity: .35;
}


.intro-floral .leaf-a {

    left: 60px;

    bottom: 250px;

    transform:
        rotate(-25deg);
}


.intro-floral .leaf-b {

    left: 170px;

    bottom: 330px;

    transform:
        rotate(30deg);
}


/* ==================================================
   ANIMATION
================================================== */

@keyframes introHeart {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.13);
    }

}


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

@media (max-width: 700px) {

    .intro {

        min-height: auto;

    }


    .intro-content {

        padding: 90px 18px;

    }


    .intro-content h2 {

        font-size: 47px;

    }


    .intro-text {

        font-size: 12px !important;

        max-width: 340px;

    }


    .couple {

        gap: 8px;

        margin-top: 50px;

    }


    .couple-person {

        width: 145px;

    }


    .couple-frame {

        width: 135px;

        height: 135px;

    }


    .couple-frame strong {

        font-size: 31px;

    }


    .couple-frame small {

        margin-top: 9px;

        font-size: 7px;

    }


    .couple-frame-inner span {

        font-size: 13px;

    }


    .couple-and {

        width: 38px;

        height: 50px;

    }


    .couple-and span {

        font-size: 37px;

    }


    .couple-and::before,
    .couple-and::after {

        height: 60px;

    }


    .couple-flower {

        width: 29px;
        height: 29px;

        font-size: 13px;

    }


    .intro-floral {

        opacity: .12;

        transform: scale(.55);

    }


    .intro-floral-left {

        left: -100px;

    }


    .intro-floral-right {

        right: -100px;

    }

}

/* ==================================================
   OZIERNAH — CLOSING & FOOTER
================================================== */

.closing {
    position: relative;

    min-height: 760px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at center,
            rgba(255,255,255,.42),
            transparent 65%
        );
}


/* ==================================================
   CONTENT
================================================== */

.closing-content {
    position: relative;

    z-index: 5;

    max-width: 850px;

    margin: auto;

    padding: 110px 25px 70px;

    text-align: center;
}


/* ==================================================
   ORNAMENT
================================================== */

.closing-ornament {
    display: flex;

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

    gap: 16px;

    margin-bottom: 22px;

    color: #c9907c;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;
}


.closing-ornament::before,
.closing-ornament::after {

    content: "";

    width: 100px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d5a291
        );
}


.closing-ornament::after {

    background:
        linear-gradient(
            90deg,
            #d5a291,
            transparent
        );
}


.closing-ornament i {

    font-style: normal;

    font-size: 25px;

    animation:
        closingHeart 3s ease-in-out infinite;
}


/* ==================================================
   EYEBROW
================================================== */

.closing-eyebrow {

    color: #9a796b;

    font-size: 9px;

    letter-spacing: .42em;

    margin-bottom: 18px;
}


/* ==================================================
   TEXT
================================================== */

.closing-text {

    max-width: 650px;

    margin: 0 auto !important;

    color: #806b5f;

    font-size: 14px !important;

    line-height: 1.95 !important;
}


/* ==================================================
   NAMES
================================================== */

.closing-names {

    display: flex;

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

    gap: 25px;

    margin-top: 45px;
}


.closing-names span {

    color: #342923;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(58px, 7vw, 82px);

    font-weight: 500;

    line-height: .9;
}


.closing-names i {

    color: #c88976;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 42px;

    font-style: normal;
}


/* ==================================================
   DIVIDER
================================================== */

.closing-divider {

    display: flex;

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

    gap: 14px;

    margin: 30px auto 25px;
}


.closing-divider span {

    width: 90px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d5a08d
        );
}


.closing-divider span:last-child {

    background:
        linear-gradient(
            90deg,
            #d5a08d,
            transparent
        );
}


.closing-divider i {

    color: #cc917d;

    font-style: normal;

    font-size: 15px;
}


/* ==================================================
   THANKS
================================================== */

.closing-thanks {

    max-width: 540px;

    margin: 0 auto !important;

    color: #a08376;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px !important;

    line-height: 1.7 !important;
}


/* ==================================================
   BOTTOM ORNAMENT
================================================== */

.closing-bottom-ornament {

    margin-top: 40px;

    color: #d09a86;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 17px;

    opacity: .8;
}


/* ==================================================
   FLORAL BACKGROUND
================================================== */

.closing-floral {

    position: absolute;

    z-index: 1;

    width: 300px;

    height: 650px;

    color: #d49b87;

    opacity: .15;

    pointer-events: none;
}


/* LEFT */

.closing-floral-left {

    left: -35px;

    bottom: -120px;

    transform:
        rotate(-12deg);
}


/* RIGHT */

.closing-floral-right {

    right: -35px;

    bottom: -120px;

    transform:
        scaleX(-1)
        rotate(-12deg);
}


/* FLOWER */

.closing-flower {

    position: absolute;

    left: 20px;

    bottom: 20px;

    font-family: Georgia, serif;

    font-size: 180px;

    opacity: .3;
}


/* BRANCH */

.closing-branch {

    position: absolute;

    left: 110px;

    bottom: -30px;

    font-family: Georgia, serif;

    font-size: 430px;

    opacity: .15;
}


/* LEAVES */

.closing-leaf {

    position: absolute;

    font-size: 75px;

    opacity: .35;
}


.closing-leaf.leaf-one {

    left: 55px;

    bottom: 270px;

    transform:
        rotate(-30deg);
}


.closing-leaf.leaf-two {

    left: 170px;

    bottom: 350px;

    transform:
        rotate(25deg);
}


/* ==================================================
   FOOTER
================================================== */

footer {

    position: relative;

    z-index: 5;

    width: 100%;

    padding: 35px 20px 45px;

    text-align: center;

    border-top: 1px solid rgba(205,165,149,.25);

    background:
        rgba(247,238,231,.55);

    backdrop-filter: blur(8px);
}


/* FOOTER LINE */

.footer-line {

    display: flex;

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

    gap: 12px;

    margin-bottom: 22px;

    color: #cf9a87;

    font-family:
        "Cormorant Garamond",
        serif;
}


.footer-line span {

    width: 60px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d2a08d
        );
}


.footer-line span:last-child {

    background:
        linear-gradient(
            90deg,
            #d2a08d,
            transparent
        );
}


.footer-line i {

    font-style: normal;

    font-size: 13px;
}


/* WITH LOVE */

.footer-love {

    display: block;

    color: #a08376;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 16px;

    font-style: italic;
}


/* NAME */

footer strong {

    display: block;

    margin-top: 4px;

    color: #4a3931;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 26px;

    font-weight: 500;
}


/* DATE */

footer small {

    display: block;

    margin-top: 6px;

    color: #ad8c7e;

    font-size: 9px;

    letter-spacing: .2em;
}


/* BRAND */

.footer-brand {

    display: flex;

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

    gap: 6px;

    margin-top: 30px;

    color: #b19487;

    font-size: 8px;

    letter-spacing: .12em;
}


.footer-brand b {

    color: #9c7769;

    font-weight: 500;

    letter-spacing: .15em;
}


/* ==================================================
   ANIMATION
================================================== */

@keyframes closingHeart {

    0%, 100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.15);
    }

}


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

@media (max-width: 700px) {

    .closing {

        min-height: auto;

    }


    .closing-content {

        padding: 90px 20px 65px;

    }


    .closing-text {

        font-size: 12px !important;

    }


    .closing-names {

        gap: 12px;

        margin-top: 40px;

    }


    .closing-names span {

        font-size: 52px;

    }


    .closing-names i {

        font-size: 30px;

    }


    .closing-thanks {

        font-size: 16px !important;

    }


    .closing-floral {

        opacity: .08;

        transform: scale(.6);

    }


    .closing-floral-left {

        left: -100px;

    }


    .closing-floral-right {

        right: -100px;

    }


    footer {

        padding-bottom: 35px;

    }

}

/* ==================================================
   WISHES & RSVP
================================================== */

.wishes-section {

    position: relative;

    max-width: none;

    min-height: 850px;

    padding:
        120px 25px
        110px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f5ece5,
            #eee1d7
        );

}


/* CONTENT */

.wishes-content {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 850px;

    margin: auto;

}


/* ORNAMENT */

.wishes-ornament {

    display: flex;

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

    gap: 15px;

    margin-bottom: 15px;

    color: #c9917d;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;

}


.wishes-ornament::before,
.wishes-ornament::after {

    content: "";

    width: 80px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d4a08e
        );

}


.wishes-ornament::after {

    background:
        linear-gradient(
            90deg,
            #d4a08e,
            transparent
        );

}


.wishes-ornament i {

    font-style: normal;

    font-size: 24px;

}


/* TITLE */

.wishes-content h2 {

    margin: 0;

    color: #3a2d27;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(48px, 6vw, 70px);

    font-weight: 500;

    line-height: 1;

}


/* INTRO */

.wishes-intro {

    max-width: 580px;

    margin:
        25px auto
        45px !important;

    color: #806b5f;

    font-size: 13px !important;

    line-height: 1.9 !important;

}


/* ==================================================
   FORM
================================================== */

.wish-form {

    max-width: 650px;

    margin: auto;

    padding: 38px;

    border:
        1px solid
        rgba(205,160,143,.45);

    border-radius: 22px;

    background:
        rgba(255,255,255,.48);

    box-shadow:
        0 20px 60px
        rgba(100,70,55,.08);

    backdrop-filter:
        blur(12px);

    text-align: left;

}


/* GROUP */

.form-group {

    position: relative;

    margin-bottom: 25px;

}


/* LABEL */

.form-group label {

    display: block;

    margin-bottom: 9px;

    color: #705b50;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: .16em;

    text-transform: uppercase;

}


/* INPUT */

.form-group input[type="text"],
.form-group textarea {

    width: 100%;

    border:
        1px solid
        rgba(190,155,139,.55);

    border-radius: 12px;

    padding: 14px 16px;

    background:
        rgba(255,255,255,.62);

    color: #4a3931;

    font-family:
        "Inter",
        sans-serif;

    font-size: 13px;

    outline: none;

    transition:
        border .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


.form-group textarea {

    min-height: 125px;

    resize: vertical;

    line-height: 1.7;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color:
        #c9927f;

    background:
        rgba(255,255,255,.82);

    box-shadow:
        0 0 0 4px
        rgba(201,146,127,.09);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #b09a8f;

}


/* ==================================================
   ATTENDANCE
================================================== */

.attendance-options {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

}


.attendance-option {

    position: relative;

    cursor: pointer;

}


.attendance-option input {

    position: absolute;

    opacity: 0;

}


.attendance-option span {

    display: flex;

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

    gap: 9px;

    min-height: 50px;

    border:
        1px solid
        rgba(190,155,139,.5);

    border-radius: 12px;

    background:
        rgba(255,255,255,.45);

    color: #806b5f;

    font-size: 11px;

    transition:
        .3s ease;

}


.attendance-option span b {

    font-size: 15px;

    font-weight: 400;

    color: #c58c79;

}


.attendance-option input:checked + span {

    border-color:
        #c78f7c;

    background:
        rgba(215,171,154,.18);

    color: #5d473d;

    box-shadow:
        0 5px 18px
        rgba(120,80,65,.07);

}


/* ==================================================
   CHARACTER COUNTER
================================================== */

.character-counter {

    margin-top: 6px;

    text-align: right;

    color: #b39a8d;

    font-size: 9px;

}


/* ==================================================
   SUBMIT
================================================== */

.wish-submit {

    width: 100%;

    display: flex;

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

    gap: 12px;

    margin-top: 8px;

    padding: 15px 25px;

    border: 0;

    border-radius: 50px;

    background:
        #6f594d;

    color: white;

    font-family:
        "Inter",
        sans-serif;

    font-size: 10px;

    letter-spacing: .2em;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(80,55,45,.16);

    transition:
        .3s ease;

}


.wish-submit span {

    font-size: 15px;

}


.wish-submit:hover {

    background:
        #4e3d34;

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(80,55,45,.22);

}


.wish-submit:disabled {

    opacity: .6;

    cursor: wait;

    transform: none;

}


/* STATUS */

.wish-status {

    min-height: 20px;

    margin-top: 15px;

    text-align: center;

    font-size: 11px;

    color: #806b5f;

}


/* ==================================================
   WISHES LIST
================================================== */

.wishes-list-wrapper {

    max-width: 650px;

    margin:
        65px auto 0;

}


.wishes-list-title {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;

    color: #806b5f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

}


.wishes-list-title span {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d5a494
        );

}


.wishes-list-title span:last-child {

    background:
        linear-gradient(
            90deg,
            #d5a494,
            transparent
        );

}


/* LIST */

.wishes-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

}


/* CARD */

.wish-card {

    padding: 22px 24px;

    border:
        1px solid
        rgba(205,165,149,.35);

    border-radius: 15px;

    background:
        rgba(255,255,255,.42);

    text-align: left;

    animation:
        wishAppear .45s ease;

}


.wish-card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

}


.wish-card-name {

    color: #49382f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 20px;

    font-weight: 600;

}


.wish-card-attendance {

    padding: 5px 10px;

    border-radius: 50px;

    background:
        rgba(199,146,126,.12);

    color: #a87867;

    font-size: 8px;

    letter-spacing: .1em;

    text-transform: uppercase;

}


.wish-card-message {

    margin-top: 10px;

    color: #806b5f;

    font-size: 12px;

    line-height: 1.8;

}


.wishes-loading {

    padding: 30px;

    text-align: center;

    color: #a98d80;

    font-size: 11px;

}


/* ==================================================
   FLORAL
================================================== */

.wishes-floral {

    position: absolute;

    z-index: 1;

    color: #cb917d;

    font-family: Georgia, serif;

    font-size: 330px;

    opacity: .08;

    pointer-events: none;

}


.wishes-floral-left {

    left: -100px;

    bottom: -140px;

    transform:
        rotate(-20deg);

}


.wishes-floral-right {

    right: -100px;

    top: -140px;

    transform:
        scaleX(-1)
        rotate(-20deg);

}


/* ==================================================
   ANIMATION
================================================== */

@keyframes wishAppear {

    from {

        opacity: 0;

        transform:
            translateY(12px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


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

@media (max-width: 600px) {

    .wishes-section {

        padding:
            90px 18px;

    }


    .wishes-content h2 {

        font-size: 48px;

    }


    .wish-form {

        padding: 25px 20px;

        border-radius: 18px;

    }


    .attendance-options {

        grid-template-columns:
            1fr;

    }


    .wish-card {

        padding: 18px;

    }


    .wish-card-header {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;

    }


    .wishes-floral {

        opacity: .05;

        transform: scale(.55);

    }

}

/* ==================================================
   DIGITAL GIFT / AMPLOP
================================================== */

.gift-section {
    position: relative;

    max-width: none;

    min-height: 850px;

    padding:
        120px 25px
        110px;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at center,
            #faf5ef 0%,
            #f2e7dd 72%,
            #eee0d5 100%
        );
}


.gift-content {
    position: relative;

    z-index: 5;

    max-width: 900px;

    margin: auto;

    text-align: center;
}


/* ==================================================
   ORNAMENT
================================================== */

.gift-ornament {
    display: flex;

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

    gap: 15px;

    margin-bottom: 14px;

    color: #c58e79;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;
}


.gift-ornament::before,
.gift-ornament::after {
    content: "";

    width: 85px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d2a08e
        );
}


.gift-ornament::after {
    background:
        linear-gradient(
            90deg,
            #d2a08e,
            transparent
        );
}


.gift-ornament i {
    font-style: normal;

    font-size: 24px;
}


/* ==================================================
   TITLE
================================================== */

.gift-content h2 {
    margin: 0;

    color: #3a2c25;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(52px, 7vw, 78px);

    font-weight: 500;

    line-height: .95;
}


.gift-intro {
    max-width: 650px;

    margin:
        25px auto
        55px !important;

    color: #806b5f;

    font-size: 13px !important;

    line-height: 1.9 !important;
}


/* ==================================================
   ENVELOPE
================================================== */

.gift-envelope {
    position: relative;

    max-width: 820px;

    min-height: 455px;

    margin: auto;

    padding:
        85px 55px
        45px;

    border:
        1px solid
        rgba(195,157,139,.45);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #fdf9f5,
            #eee0d4
        );

    box-shadow:
        0 30px 80px
        rgba(91,64,50,.13);

    overflow: hidden;
}


/* ==================================================
   ENVELOPE FLAP
================================================== */

.envelope-flap {
    position: absolute;

    top: -145px;

    left: 50%;

    width: 500px;
    height: 500px;

    transform:
        translateX(-50%)
        rotate(45deg);

    border:
        1px solid
        rgba(195,157,139,.25);

    background:
        linear-gradient(
            135deg,
            rgba(224,207,193,.8),
            rgba(250,243,237,.5)
        );

    opacity: .55;

    pointer-events: none;
}


/* ==================================================
   SEAL
================================================== */

.envelope-seal {
    position: absolute;

    top: 30px;

    left: 50%;

    transform:
        translateX(-50%);

    width: 55px;
    height: 55px;

    display: flex;

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

    border-radius: 50%;

    background:
        #775342;

    color: white;

    font-size: 20px;

    box-shadow:
        0 8px 25px
        rgba(70,45,35,.18);

    z-index: 4;
}


/* ==================================================
   BANK CARD
================================================== */

.gift-card {
    position: relative;

    z-index: 5;

    max-width: 500px;

    margin: auto;

    padding: 35px 40px;

    border:
        1px solid
        rgba(200,165,147,.45);

    border-radius: 18px;

    background:
        rgba(255,255,255,.72);

    box-shadow:
        0 15px 45px
        rgba(90,65,52,.09);

    backdrop-filter:
        blur(10px);
}


/* TITLE */

.gift-card-title {
    display: flex;

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

    gap: 12px;

    margin-bottom: 20px;

    color: #80665a;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .28em;
}


.gift-card-title::before,
.gift-card-title::after {
    content: "";

    width: 35px;

    height: 1px;

    background: #d3ab99;
}


/* ==================================================
   MANDIRI LOGO
================================================== */

.mandiri-logo {
    display: block;

    width: 150px;

    height: auto;

    margin:
        0 auto
        28px;
}


/* ==================================================
   BANK DETAIL
================================================== */

.bank-detail {
    padding:
        14px 0;

    border-bottom:
        1px solid
        rgba(205,170,151,.35);

    text-align: left;
}


.bank-detail small {
    display: block;

    margin-bottom: 5px;

    color: #a08376;

    font-size: 9px;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.bank-detail strong {
    display: block;

    color: #49372f;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

    font-weight: 600;

    letter-spacing: .04em;
}


.bank-detail:nth-of-type(2) strong {
    font-size: 20px;

    letter-spacing: .02em;

    text-transform: none;
}


/* ==================================================
   COPY BUTTON
================================================== */

.copy-account {
    width: 100%;

    display: flex;

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

    gap: 10px;

    margin-top: 22px;

    padding: 14px 20px;

    border: none;

    border-radius: 50px;

    background:
        #735444;

    color: white;

    font-family:
        "Inter",
        sans-serif;

    font-size: 10px;

    letter-spacing: .16em;

    cursor: pointer;

    box-shadow:
        0 8px 20px
        rgba(80,55,44,.15);

    transition:
        .3s ease;
}


.copy-account:hover {
    background:
        #503a30;

    transform:
        translateY(-2px);
}


.copy-account span {
    font-size: 14px;
}


/* STATUS */

.copy-status {
    min-height: 17px;

    margin-top: 10px;

    color: #a47868;

    font-size: 10px;
}


/* ==================================================
   NOTE
================================================== */

.gift-note {
    margin-top: 35px;

    color: #a08376;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 17px;

    font-style: italic;
}


/* ==================================================
   FLORAL DECOR
================================================== */

.gift-floral {
    position: absolute;

    z-index: 1;

    color: #c9927e;

    font-family:
        Georgia,
        serif;

    font-size: 360px;

    opacity: .08;

    pointer-events: none;
}


.gift-floral-left {
    left: -120px;

    bottom: -160px;

    transform:
        rotate(-20deg);
}


.gift-floral-right {
    right: -120px;

    top: -160px;

    transform:
        scaleX(-1)
        rotate(-20deg);
}


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

@media (max-width: 600px) {

    .gift-section {
        padding:
            90px 16px;
    }


    .gift-content h2 {
        font-size: 50px;
    }


    .gift-intro {
        font-size: 12px !important;

        margin-bottom: 40px !important;
    }


    .gift-envelope {
        min-height: auto;

        padding:
            75px 15px
            30px;

        border-radius: 20px;
    }


    .envelope-flap {
        width: 320px;
        height: 320px;

        top: -90px;
    }


    .gift-card {
        padding:
            28px 20px;
    }


    .mandiri-logo {
        width: 130px;
    }


    .bank-detail strong {
        font-size: 21px;
    }


    .bank-detail:nth-of-type(2) strong {
        font-size: 17px;
    }


    .gift-floral {
        opacity: .05;
        transform: scale(.55);
    }

}

/* ==================================================
   COUPLE PHOTO
================================================== */

.couple-photo {
    position: relative;
    padding: 30px 25px 100px;
    text-align: center;
    overflow: hidden;
}

.photo-frame {
    position: relative;
    width: min(430px, 88vw);
    margin: 0 auto;

    padding: 10px;

    background: rgba(255,255,255,.65);

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

    box-shadow:
        0 25px 60px rgba(58,48,42,.12);

    transform: rotate(-1deg);

    transition:
        transform .6s ease,
        box-shadow .6s ease;
}

.photo-frame::before {
    content: "";
    position: absolute;

    inset: 6px;

    border: 1px solid rgba(216,204,192,.7);

    pointer-events: none;

    z-index: 2;
}

.photo-frame img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    filter: saturate(.92);

    position: relative;
    z-index: 1;
}

.photo-frame:hover {
    transform: rotate(0deg) translateY(-5px);

    box-shadow:
        0 35px 75px rgba(58,48,42,.18);
}


/* CAPTION */

.photo-caption {
    margin-top: 28px;

    display: flex;
    flex-direction: column;

    gap: 7px;
}

.photo-caption span {
    font-size: 10px;
    letter-spacing: .4em;

    font-weight: 500;
}

.photo-caption small {
    color: var(--muted);

    font-size: 11px;

    letter-spacing: .25em;
}


/* ORNAMENT */

.photo-ornament {
    position: absolute;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 24px;

    opacity: .65;
}

.photo-ornament-top {
    top: 0;
    left: calc(50% - 250px);
}

.photo-ornament-bottom {
    bottom: 55px;
    right: calc(50% - 250px);
}


/* MOBILE */

@media (max-width: 600px) {

    .couple-photo {
        padding:
            15px 20px 80px;
    }

    .photo-frame {
        width: min(360px, 88vw);
    }

    .photo-caption {
        margin-top: 24px;
    }

    .photo-ornament-top {
        left: 15%;
    }

    .photo-ornament-bottom {
        right: 15%;
    }
}

/* ==================================================
   SHARE INVITATION
================================================== */

.share-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 90px 25px 70px;
    text-align: center;
}

.share-ornament {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    color: #c98f7b;
    margin-bottom: 20px;
}

.share-section .eyebrow {
    margin-bottom: 18px;
}

.share-section h2 {
    margin-bottom: 18px;
}

.share-section p {
    max-width: 520px;
    margin: 0 auto 32px;
}

.whatsapp-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 260px;
    padding: 15px 28px;

    border: 1px solid var(--line);
    border-radius: 50px;

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

    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;

    box-shadow: 0 12px 30px rgba(58, 48, 42, .14);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.whatsapp-share span {
    font-size: 14px;
}

.whatsapp-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(58, 48, 42, .2);
    background: #4b3c34;
}
