/* ===================================================================
           CSS RESET & SINGLE-VIEWPORT ESSENTIALS (100dvh, NO SCROLLBAR)
           =================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(180deg, #FFF5DA 0%, #F1FCCA 100%);
    color: #111111;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

* {
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

/* ===================================================================
           EDITORIAL DESIGN TOKENS & RESPONSIVE METRICS
           =================================================================== */
:root {
    --f-safe-top: env(safe-area-inset-top, 0px);
    --f-safe-bottom: env(safe-area-inset-bottom, 0px);
    --f-pad-top: calc(env(safe-area-inset-top, 0px) + 20px);
    --f-pad-x: 32px;
    --f-mff-h: clamp(46px, 6vh, 62px);
    --f-mb-mff: clamp(14px, 2vh, 24px);
    --f-logo-w: clamp(260px, 46vw, 560px);
    --f-logo-h-val: auto;
    --f-mb-logo: clamp(34px, 5vh, 64px);
    --f-label-size: clamp(13px, 2vw, 20px);
    --f-mb-label: clamp(20px, 3vh, 38px);
    --f-mb-tagline: clamp(26px, 3.8vh, 48px);
    --f-mb-date: clamp(38px, 5.4vh, 68px);
    --f-mb-cd: clamp(14px, 2.4vh, 30px);
    --f-card-w: 84px;
    --f-card-h: 94px;
    --f-card-num: 42px;
    --f-card-gap: 12px;
    --f-footer-pb: calc(env(safe-area-inset-bottom, 0px) + 18px);
    --f-footer-gap: 10px;
    --f-icon-size: clamp(38px, 2.6vw, 42px);
    --f-tagline-display: block;
    --f-sidebar-display: flex;
    --f-sidebar-inset: clamp(3.5rem, 7vw, 10rem);
}



@media (max-height: 700px) {
    :root {
        --f-pad-top: calc(env(safe-area-inset-top, 0px) + 10px);
        --f-mff-h: clamp(34px, 5.5vh, 64px);
        --f-mb-mff: 10px;
        --f-logo-w: clamp(180px, 34vw, 320px);
        --f-logo-h-val: auto;
        --f-mb-logo: 14px;
        --f-mb-label: 8px;
        --f-mb-tagline: 12px;
        --f-mb-date: 20px;
        --f-mb-cd: 10px;
        --f-card-w: 64px;
        --f-card-h: 72px;
        --f-card-num: 28px;
        --f-card-gap: 8px;
        --f-footer-pb: calc(env(safe-area-inset-bottom, 0px) + 10px);
        --f-footer-gap: 6px;
        --f-icon-size: 34px;
        --f-tagline-display: none;
    }
}

@media (max-width: 1024px) {
    :root {
        --f-sidebar-display: flex;
        /* --f-sidebar-inset: clamp(3.5rem, 7vw, 8rem); */
    }
}


@media (max-width: 768px) {
    :root {
        /* --f-sidebar-display: flex; */
        --f-sidebar-inset: clamp(-1.5rem, 3vw, -2rem);
    }
}



@media (max-width: 600px) {
    :root {
        --f-sidebar-display: none;
    }

    .miff-vertical-sidebar-left,
    .miff-vertical-sidebar-right {
        display: none !important;
    }
}

@media (max-width: 520px) {
    :root {
        --f-pad-x: 16px;
        --f-logo-w: clamp(190px, 68vw, 290px);
        --f-logo-h-val: auto;
        --f-card-w: clamp(58px, 18vw, 68px);
        --f-card-h: clamp(66px, 20vw, 76px);
        --f-card-num: clamp(24px, 7vw, 30px);
        --f-card-gap: clamp(6px, 2vw, 8px);
        --f-sidebar-display: none;
    }

    .miff-date-line {
        width: clamp(16px, 4vw, 32px) !important;
    }

    .miff-date-divider-row {
        gap: 8px !important;
    }
}

.tabular-nums {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

/* 3-Row Grid Viewport */
.miff-v2-container {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    position: relative;
    isolation: isolate;
    /* isolate mix-blend-mode elements from modals and overlays */
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(180deg, #FFF5DA 0%, #F1FCCA 100%);
}

/* Account for the WordPress admin bar so the footer row is never pushed
           below the fold and clipped by the container's overflow: hidden. */
.admin-bar .miff-v2-container {
    height: calc(100vh - 32px);
    height: calc(100dvh - 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .miff-v2-container {
        height: calc(100vh - 46px);
        height: calc(100dvh - 46px);
    }
}

/* Subtle Paper Grain Texture Overlay */
.miff-paper-grain {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
    mix-blend-mode: multiply;
}

/* Bottom Soft Atmospheric Wash */
.miff-bottom-wash {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28vh;
    background: linear-gradient(to top, rgba(241, 252, 202, 0.5) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ===================================================================
           VERTICAL EDITORIAL SIDEBARS (DESKTOP ONLY)
           =================================================================== */
.miff-vertical-sidebar-left {
    position: absolute;
    top: 50%;
    left: var(--f-sidebar-inset);
    width: max-content;
    transform: translateY(-50%) rotate(-90deg);
    display: var(--f-sidebar-display);
    align-items: center;
    gap: 10px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 5;
}

.miff-vertical-sidebar-right {
    position: absolute;
    top: 50%;
    right: var(--f-sidebar-inset);
    width: max-content;
    transform: translateY(-50%) rotate(90deg);
    display: var(--f-sidebar-display);
    align-items: center;
    gap: 10px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 5;
}

.miff-sidebar-rule {
    width: 28px;
    height: 1px;
    background: rgba(34, 34, 34, 0.22);
}

.miff-sidebar-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(11px, 0.85vw, 12.5px);
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(34, 34, 34, 0.38);
}

/* ===================================================================
           GRID ROW 1: HEADER (TOP BAR)
           =================================================================== */
.miff-v2-header {
    padding-top: var(--f-pad-top);
    padding-left: var(--f-pad-x);
    padding-right: var(--f-pad-x);
    padding-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 6;
}

.miff-edition-badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.miff-edition-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgb(232, 93, 4);
    flex-shrink: 0;
}

.miff-edition-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(34, 34, 34, 0.45);
}

.miff-location-text {
    font-size: 9.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(28, 28, 28, 0.45);
    font-weight: 500;
    text-align: right;
}

/* ===================================================================
           GRID ROW 2: MAIN CONTENT (HERO FOCUS & TIMECODE COUNTDOWN)
           =================================================================== */
.miff-v2-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--f-pad-x);
    z-index: 6;
    overflow: hidden;
    position: relative;
    text-align: center;
    min-height: 0;
    /* allow the 1fr row to shrink so the footer row is never clipped */
}

.miff-logo-mff {
    height: var(--f-mff-h);
    width: auto;
    mix-blend-mode: multiply;
    display: block;
    margin-bottom: var(--f-mb-mff);
    opacity: 0.78;
    transition: transform 0.3s ease;
}

.miff-logo-mff:hover {
    transform: scale(1.03);
}

.miff-logo-rimpang {
    width: var(--f-logo-w);
    height: var(--f-logo-h-val);
    mix-blend-mode: multiply;
    display: block;
    margin-bottom: var(--f-mb-logo);
    user-select: none;
    -webkit-user-drag: none;
}

.miff-status-label {
    font-size: var(--f-label-size);
    font-weight: 600;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(28, 28, 28, 0.55);
    margin-bottom: var(--f-mb-label);
}

.miff-tagline {
    display: var(--f-tagline-display);
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 400;
    font-style: italic;
    color: rgba(34, 34, 34, 0.45);
    letter-spacing: 0.03em;
    margin-bottom: var(--f-mb-tagline);
    text-align: center;
}

.miff-date-divider-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: var(--f-mb-date);
}

.miff-date-line {
    width: clamp(40px, 7vw, 72px);
    height: 1px;
    background: rgba(34, 34, 34, 0.18);
    flex-shrink: 0;
}

.miff-date-text {
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 700;
    color: rgb(34, 34, 34);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

/* 4 Timecode Countdown Cards */
.miff-countdown-grid {
    display: flex;
    gap: var(--f-card-gap);
    justify-content: center;
    align-items: center;
}

.miff-timecode-card {
    width: var(--f-card-w);
    height: var(--f-card-h);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(180, 170, 140, 0.38);
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(200, 180, 100, 0.12), 0 1px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.miff-timecode-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 180, 100, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
}

.miff-countdown-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: var(--f-card-num);
    font-weight: 800;
    line-height: 1;
    color: rgb(34, 34, 34);
    letter-spacing: -0.02em;
}

.miff-countdown-seconds {
    color: rgb(232, 93, 4);
}

.miff-countdown-unit {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(28, 28, 28, 0.48);
}

/* ===================================================================
           ACTION: SAVE THE DATE / TAMBAHKAN KE KALENDER (MULTI-PLATFORM)
           =================================================================== */
.miff-cal-action-wrapper {
    margin-top: clamp(10px, 1.8vh, 18px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.miff-cal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: clamp(6px, 1.2vh, 8px) clamp(16px, 3.5vw, 22px);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(180, 170, 140, 0.45);
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(180, 160, 90, 0.1), 0 1px 3px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(11.5px, 1.05vw, 13px);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #222222;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.miff-cal-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgb(232, 93, 4);
    color: rgb(232, 93, 4);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.16), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.miff-cal-btn:focus-visible {
    outline: 2px solid rgb(232, 93, 4);
    outline-offset: 2px;
}

.miff-cal-btn-icon {
    color: rgb(232, 93, 4);
    transition: transform 0.2s ease;
}

.miff-cal-btn:hover .miff-cal-btn-icon {
    transform: scale(1.1);
}

/* ===================================================================
           GRID ROW 3: FOOTER (SOCIALS + COPYRIGHT)
           =================================================================== */
.miff-v2-footer {
    position: relative;
    z-index: 6;
    flex-shrink: 0;
    /* always reserve the footer row; never let it collapse or clip */
    padding-top: clamp(8px, 1.6vh, 18px);
    padding-bottom: var(--f-footer-pb);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--f-footer-gap);
}

.miff-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.miff-social-btn {
    width: var(--f-icon-size);
    height: var(--f-icon-size);
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(28, 28, 28, 0.22);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(28, 28, 28, 0.52);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.miff-social-btn:hover {
    border-color: rgb(232, 93, 4);
    color: rgb(232, 93, 4);
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.08);
}

.miff-social-btn:focus-visible {
    outline: 2px solid rgb(232, 93, 4);
    outline-offset: 2px;
}

.miff-copyright-text {
    font-size: clamp(11px, 1.1vw, 13px);
    color: rgba(34, 34, 34, 0.48);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.03em;
    text-align: center;
}

/* ===================================================================
           ORGANIC FLOATING & WAVE ANIMATIONS (KEYFRAMES & CLASSES)
           =================================================================== */
/* Center leaf only: gentle organic up-down float around its -62% anchor.
           All other ornaments are static, matching the Figma reference exactly. */
@keyframes center-leaf-float {

    0%,
    100% {
        transform: translate(-50%, calc(-62% - 8px)) rotate(-1deg);
    }

    50% {
        transform: translate(-50%, calc(-62% + 8px)) rotate(1deg);
    }
}

.anim-center-leaf {
    animation: center-leaf-float 8s infinite ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .anim-center-leaf {
        animation: none;
    }
}

/* ===================================================================
           BACKGROUND BOTANICAL ORNAMENTS LAYER & RESPONSIVE RULES
           =================================================================== */
.miff-ornaments-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    z-index: 2;
    overflow: hidden;
}

.miff-ornament {
    position: absolute;
    height: auto;
    mix-blend-mode: multiply;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    will-change: transform;
}

/* Desktop Ornaments Layout (Base) */
/* Sacred Awan (Behind Rimpang Logo - UNTOUCHED) */
.miff-orn-awan {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -62%);
    width: clamp(280px, 50vw, 560px);
    opacity: 0.22;
}

/* 1. Kanopi Atas Tengah: Dedaunan Hijau Rimpang Menjuntai Anggun Sedikit dari Plafon (1:1 Sesuai Referensi Canva) */
.miff-orn-top-canopy {
    top: clamp(-27rem, -35vh, -23rem);
    left: 50%;
    transform: translateX(-50%) rotate(26deg);
    width: clamp(380px, 31vw, 450px);
    opacity: 0.96;
    filter: saturate(1.2) contrast(1.05);
    z-index: 2;
}

/* 2. Bunga 1 (Kiri Atas - Mepet Pojok Layar) */
.miff-orn-top-left {
    top: clamp(-36px, -4vh, -22px);
    left: clamp(-30px, -2.5vw, -15px);
    width: clamp(140px, 16vw, 240px);
    opacity: 0.90;
    filter: saturate(1.3) contrast(1.05);
    transform: rotate(14deg);
}

/* 2b. Akar Menjuntai (Pojok Kiri Atas - Mepet Pojok Layar) */
.miff-orn-top-left-root {
    top: clamp(-28px, -3.2vh, -16px);
    left: clamp(-18px, -1.2vw, -5px);
    width: clamp(130px, 14vw, 210px);
    opacity: 0.78;
    filter: saturate(1.25) contrast(1.05);
    transform: rotate(180deg);
}

/* 3. Bunga 3 (Kanan Atas) - Dinonaktifkan */
.miff-orn-top-right {
    display: none;
}

/* 3b. Kelopak Bunga (Pojok Kanan Atas - Mepet Pojok Layar) */
.miff-orn-top-right-flower {
    top: clamp(-35px, -4vh, -22px);
    right: clamp(-5px, 0.4vw, 15px);
    width: clamp(70px, 7.5vw, 110px);
    opacity: 0.85;
    filter: saturate(1.25) contrast(1.05);
    transform: rotate(-30deg);
}

/* 3c. Akar Menjuntai (Pojok Kanan Atas - Mepet Pojok Layar) */
.miff-orn-top-right-root {
    top: clamp(-22px, -2.5vh, -10px);
    right: clamp(-18px, -1.2vw, -5px);
    width: clamp(110px, 11.5vw, 165px);
    opacity: 0.78;
    filter: saturate(1.25) contrast(1.05);
    transform: scaleX(-1);
}

/* 4. Kumpulan Bunga (Kanan Tengah) */
.miff-orn-mid-right {
    top: 30%;
    right: -7%;
    width: clamp(160px, 20vw, 280px);
    opacity: 0.88;
    filter: saturate(1.3) contrast(1.05);
    transform: rotate(-8deg);
}

/* 5. Bunga 2 (Kiri Tengah) */
.miff-orn-mid-left {
    top: 29%;
    left: -6%;
    width: clamp(110px, 13vw, 200px);
    opacity: 0.85;
    filter: saturate(1.3) contrast(1.05);
    transform: rotate(-10deg);
}

/* 6. Akar 1 (Dasar Bawah Kiri - Vibrant Warm Coral/Orange) */
.miff-orn-bot-left {
    bottom: -23%;
    left: -5%;
    width: clamp(180px, 22vw, 310px);
    opacity: 0.95;
    filter: saturate(1.3) contrast(1.05);
    transform: rotate(-10deg);
}

/* 7. Akar 3 (Dasar Bawah Kiri Penyeimbang) */
.miff-orn-bot-left-extra {
    bottom: -16%;
    left: 14%;
    width: clamp(90px, 11vw, 160px);
    opacity: 0.48;
    filter: saturate(1.3) contrast(1.05);
    transform: rotate(6deg);
}

/* 8. Akar 5 (Dasar Bawah Kanan - Vibrant Violet/Indigo) */
.miff-orn-bot-right {
    bottom: -23%;
    right: -5%;
    width: clamp(170px, 21vw, 300px);
    opacity: 0.92;
    filter: saturate(1.3) contrast(1.05);
    transform: rotate(12deg) scaleX(-1);
}

/* 9. Akar 2 (Dasar Bawah Tengah) */
.miff-orn-bot-mid {
    bottom: -12%;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    width: clamp(100px, 12vw, 180px);
    opacity: 0.45;
    filter: saturate(1.2);
}

/* Tablet Adjustments (641px - 1024px) */
@media (max-width: 1024px) {
    .miff-orn-top-canopy {
        top: clamp(-250px, -29vh, -205px);
        width: clamp(280px, 34vw, 350px);
        transform: translateX(-50%) rotate(26deg);
        opacity: 0.95;
    }

    .miff-orn-top-left {
        top: clamp(-28px, -3.2vh, -16px);
        left: clamp(-22px, -2vw, -12px);
        width: clamp(120px, 16vw, 190px);
        opacity: 0.88;
    }

    .miff-orn-top-left-root {
        top: clamp(-22px, -2.5vh, -12px);
        left: clamp(-12px, -1vw, -2px);
        width: clamp(100px, 13vw, 160px);
        opacity: 0.75;
    }

    .miff-orn-top-right {
        display: none;
    }

    .miff-orn-top-right-flower {
        top: clamp(-28px, -3.2vh, -16px);
        right: clamp(-2px, 0.5vw, 12px);
        width: clamp(55px, 6.5vw, 90px);
        opacity: 0.82;
    }

    .miff-orn-top-right-root {
        top: clamp(-16px, -1.8vh, -8px);
        right: clamp(-12px, -1vw, -2px);
        width: clamp(85px, 10vw, 135px);
        opacity: 0.75;
    }

    .miff-orn-mid-right {
        top: 40%;
        right: -5%;
        width: clamp(140px, 18vw, 220px);
        opacity: 0.85;
    }

    .miff-orn-mid-left {
        top: 52%;
        left: -5%;
        width: clamp(100px, 13vw, 160px);
        opacity: 0.82;
    }

    .miff-orn-bot-left {
        bottom: -5%;
        left: -5%;
        width: clamp(150px, 19vw, 240px);
        opacity: 0.92;
    }

    .miff-orn-bot-left-extra {
        bottom: -12%;
        left: 12%;
        width: clamp(80px, 10vw, 120px);
        opacity: 0.42;
    }

    .miff-orn-bot-right {
        bottom: -5%;
        right: -5%;
        width: clamp(140px, 18vw, 230px);
        opacity: 0.90;
    }

    .miff-orn-bot-mid {
        bottom: -10%;
        width: clamp(90px, 11vw, 140px);
        opacity: 0.40;
    }
}

/* Mobile Adjustments (<= 640px):
   Lush & vibrant framing keeping central interactive cards 100% unencumbered */
@media (max-width: 640px) {
    .miff-orn-awan {
        width: clamp(230px, 68vw, 320px);
        opacity: 0.22;
    }

    .miff-orn-top-canopy {
        top: clamp(-10rem, -22vw, -5rem);
        width: clamp(130px, 34vw, 165px);
        transform: translateX(-50%) rotate(26deg);
        opacity: 0.95;
    }

    .miff-orn-top-left {
        top: -24px;
        left: -20px;
        width: clamp(75px, 20vw, 95px);
        opacity: 0.88;
        transform: rotate(14deg);
    }

    .miff-orn-top-left-root {
        /* top: -18px;
        left: -14px; */
        /* top: -10px; */
        top: 0;
        left: 0;
        scale: calc(1* 1.55);
        width: clamp(68px, 18vw, 86px);
        opacity: 0.70;
    }

    .miff-orn-top-right {
        display: none;
    }

    .miff-orn-top-right-flower {
        top: -22px;
        right: -6px;
        width: clamp(42px, 11vw, 55px);
        opacity: 0.75;
    }

    .miff-orn-top-right-root {
        /* top: -14px;
        right: -14px; */
        top: 7px;
        right: -12px;
        width: clamp(60px, 15vw, 76px);
        scale: calc(1* 1.55);
        opacity: 0.70;
    }

    .miff-orn-mid-left {
        top: 32%;
        left: -7%;
        width: clamp(75px, 20vw, 95px);
        opacity: 0.82;
        transform: rotate(-12deg);
    }

    .miff-orn-mid-right {
        top: 36%;
        right: -10%;
        width: clamp(90px, 25vw, 120px);
        opacity: 0.85;
        transform: rotate(-8deg);
        scale: calc(1*1.55);
    }

    .miff-orn-bot-left {
        bottom: -4%;
        left: -7%;
        width: clamp(130px, 34vw, 165px);
        opacity: 0.92;
        transform: rotate(-8deg);
    }

    .miff-orn-bot-left-extra {
        bottom: -10%;
        left: 10%;
        width: clamp(65px, 18vw, 90px);
        opacity: 0.38;
        transform: rotate(4deg);
    }

    .miff-orn-bot-right {
        bottom: -4%;
        right: -7%;
        width: clamp(125px, 32vw, 155px);
        opacity: 0.90;
        transform: rotate(10deg) scaleX(-1);
    }

    .miff-orn-bot-mid {
        bottom: -8%;
        width: clamp(80px, 22vw, 110px);
        opacity: 0.35;
    }
}