/* ============================================================
   TOKENS
============================================================ */
:root {
    --sage: #EEF3EE;
    --sage-mid: #E0EAE0;
    --sage-deep: #C8D8C8;
    --forest: #1D3A2F;
    --forest-mid: #265040;
    --forest-light: #3A6B56;
    --forest-pale: #EAF0EC;
    --rose: #C4767A;
    --rose-lt: #D4959A;
    --rose-pale: #F8EDEE;
    --warm-white: #FDFCFA;
    --white: #FFFFFF;
    --ink: #141F18;
    --stone: #5C6B5E;
    --stone-lt: #9BAA9D;

    --sh-xs: 0 1px 5px rgba(20, 31, 24, 0.06);
    --sh-sm: 0 3px 16px rgba(20, 31, 24, 0.08);
    --sh-md: 0 8px 36px rgba(20, 31, 24, 0.10);
    --sh-lg: 0 20px 60px rgba(20, 31, 24, 0.12);

    --r: 14px;
    --r-lg: 26px;
    --r-pill: 100px;
    --mw: 1080px;
    --ease: 0.24s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--sage);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================================================
   TYPE
============================================================ */
h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    line-height: 1.1;
}

h1 {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    font-weight: 600;
    font-optical-sizing: auto;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
}

p {
    line-height: 1.8;
}

.kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rose);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.kicker::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--rose);
    flex-shrink: 0;
}

.kicker-center {
    justify-content: center;
}

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
    width: 100%;
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 32px;
}

.tc {
    text-align: center;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.btn-forest {
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(29, 58, 47, 0.28);
}

.btn-forest:hover {
    background: var(--forest-mid);
    box-shadow: 0 8px 32px rgba(29, 58, 47, 0.38);
    transform: translateY(-2px);
}

.btn-rose {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(196, 118, 122, 0.3);
}

.btn-rose:hover {
    background: var(--rose-lt);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 118, 122, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--sage-deep);
}

.btn-ghost:hover {
    border-color: var(--forest);
    background: var(--forest-pale);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

/* Phone pill */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--white);
    border: 1.5px solid var(--sage-deep);
    border-radius: var(--r-pill);
    padding: 13px 28px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.45rem;
    color: var(--forest);
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    cursor: pointer;
    letter-spacing: -0.02em;
}

.phone-pill:hover {
    border-color: var(--forest);
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

.phone-pill svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--rose);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.disc {
    font-size: 0.77rem;
    color: var(--stone-lt);
    margin-top: 12px;
}

/* ============================================================
   NAVBAR
============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(238, 243, 238, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sage-mid);
}

.nav-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 32px;
}

.brand {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 0;
}

.brand .petal {
    color: var(--rose);
}
.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-a {
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--stone);
    transition: color var(--ease);
}

.nav-a:hover {
    color: var(--forest);
}

.nav-btn {
    padding: 9px 20px;
    font-size: 0.86rem;
}

/* ============================================================
   HERO - full-width centered, typographically dominant
============================================================ */
.hero {
    background: var(--forest);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 88px 32px 88px;
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

/* petal bg replaced by page-level .fp layer */

.hero-img{
    position: absolute;
    inset: 0;
}
.hero-img::before{
    content: '';
     position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(0,0,0, .7);
}
.hero-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.live-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--sage-mid);
    border-radius: var(--r-pill);
    padding: 5px 14px 5px 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--stone);
    margin-bottom: 16px;
    box-shadow: var(--sh-xs);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* H1 with a ruled line above */
.hero-rule {
    width: 40px;
    height: 2px;
    background: var(--rose);
    margin: 0 auto 12px;
    border-radius: 2px;
}

.hero-h1 {
    margin-bottom: 14px;
}

.hero-h1 em {
    font-style: italic;
    color: var(--rose);
}

/* Thin divider between headline and sub */
.hero-div {
    width: 100%;
    max-width: 480px;
    height: 1px;
    background: var(--sage-deep);
    margin: 0 auto 14px;
}

.hero-sub {
    max-width: 840px;
    margin: 0 auto 22px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

/* Inline stat strip below CTA */
.hero-stats {
    display: inline-flex;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--sage-mid);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh-xs);
}

.hstat {
    padding: 12px 22px;
    text-align: center;
    border-right: 1px solid var(--sage-mid);
}

.hstat:last-child {
    border-right: none;
}

.hstat-fig {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -0.03em;
}

.hstat-label {
    font-size: 0.7rem;
    color: var(--stone-lt);
    line-height: 1.3;
}

/* ============================================================
   EDITORIAL PROBLEM SECTION
============================================================ */

/* ============================================================
   WHAT VOICEPETAL IS
============================================================ */
.what-sec {
    background: var(--sage);
    padding: 96px 0;
}
.what-img{
    aspect-ratio: 4/2;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-bottom: 1.5rem;
}
.what-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.what-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.what-inner h2 {
    margin-bottom: 22px;
}

.what-inner p {
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.what-inner p:last-of-type {
    margin-bottom: 36px;
}

.what-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ============================================================
   CALLER PROFILES
============================================================ */
.profiles-sec {
    background: var(--warm-white);
    padding: 96px 0;
}

.profiles-intro {
    max-width: 560px;
    margin: 0 auto 52px;
    text-align: center;
}

.profiles-intro h2 {
    margin-bottom: 12px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.profile-card {
    background: var(--sage);
    border: 1.5px solid var(--sage-mid);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.profile-card:hover::before {
    transform: scaleX(1);
}

.profile-card:hover {
    border-color: var(--sage-deep);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

.profile-hood {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-hood::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
}

.profile-card h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--forest);
    line-height: 1.3;
}

.profile-card p {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-sec {
    background: var(--forest);
    padding: 96px 0;
}

.testi-intro {
    max-width: 500px;
    margin: 0 auto 52px;
    text-align: center;
}

.testi-intro .kicker {
    color: rgba(255, 255, 255, 0.4);
}

.testi-intro .kicker::before {
    background: rgba(255, 255, 255, 0.3);
}

.testi-intro h2 {
    color: var(--white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    padding: 38px 30px;
    transition: var(--ease);
}

.tc:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(196, 118, 122, 0.4);
    transform: translateY(-4px);
}

.tc-hl {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.45;
}

.tc-body {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.78;
    margin-bottom: 24px;
}

.tc-foot {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tc-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(196, 118, 122, 0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    color: var(--rose-lt);
    font-weight: 600;
}

.tc-name {
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--white);
    display: block;
    line-height: 1.2;
}

.tc-loc {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.star {
    width: 13px;
    height: 13px;
    fill: #FCD34D;
}

/* ============================================================
   BENEFITS
============================================================ */
.benefits-sec {
    background: var(--warm-white);
    padding: 96px 0;
}

.benefits-intro {
    max-width: 560px;
    margin: 0 auto 52px;
    text-align: center;
}

.benefits-intro h2 {
    margin-bottom: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.benefit-card {
    background: var(--sage);
    border: 1.5px solid var(--sage-mid);
    border-radius: var(--r);
    padding: 40px 36px;
    transition: var(--ease);
}

.benefit-card:hover {
    border-color: var(--sage-deep);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.benefit-num {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--sage-deep);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.04em;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--forest);
}

.benefit-card p {
    font-size: 0.9rem;
}

/* ============================================================
   SAFETY
============================================================ */
.safety-sec {
    background: var(--rose-pale);
    padding: 96px 0;
}

.safety-intro {
    max-width: 520px;
    margin: 0 auto 52px;
    text-align: center;
}

.safety-intro .kicker {
    color: var(--rose);
}

.safety-intro h2 {
    margin-bottom: 12px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.safety-card {
    background: var(--white);
    border: 1.5px solid rgba(196, 118, 122, 0.12);
    border-radius: var(--r);
    padding: 38px 28px;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.safety-card:hover {
    border-color: rgba(196, 118, 122, 0.3);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.safety-q {
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.35;
}

.safety-card p {
    font-size: 0.9rem;
}

/* ============================================================
   FAQ
============================================================ */
.faq-sec {
    background: var(--sage);
    padding: 96px 0;
}

.faq-intro {
    max-width: 500px;
    margin: 0 auto 44px;
    text-align: center;
}

.faq-intro h2 {
    margin-bottom: 10px;
}

.faq-wrap {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fi {
    background: var(--white);
    border: 1.5px solid var(--sage-mid);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--ease);
}

.fi.open {
    border-color: var(--sage-deep);
}

.fq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest);
    transition: color var(--ease);
}

.fq:hover {
    color: var(--rose);
}

.fi-tog {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--sage);
    border: 1.5px solid var(--sage-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    font-size: 1.1rem;
    line-height: 1;
    transition: transform var(--ease), background var(--ease), color var(--ease);
}

.fi.open .fi-tog {
    transform: rotate(45deg);
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.fa {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.38s ease, padding 0.26s;
}

.fi.open .fa {
    max-height: 220px;
    padding: 0 26px 22px;
}

.fa p {
    font-size: 0.92rem;
}

/* ============================================================
   FINAL CTA
============================================================ */
.cta-sec {
    background: var(--forest);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-petal {
    position: absolute;
    pointer-events: none;
    opacity: 0.07;
}

.cta-petal-1 {
    bottom: -60px;
    right: -60px;
    width: 380px;
}

.cta-petal-2 {
    top: -80px;
    left: -60px;
    width: 300px;
    transform: rotate(180deg);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner .kicker {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.cta-inner .kicker::before {
    background: rgba(255, 255, 255, 0.3);
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

.cta-acts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.phone-pill-white {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--r-pill);
    padding: 13px 28px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.45rem;
    color: var(--white);
    transition: var(--ease);
    cursor: pointer;
    letter-spacing: -0.02em;
}

.phone-pill-white:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.phone-pill-white svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--rose-lt);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.cta-disc {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 12px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--ink);
    padding: 28px 32px;
}

.foot-in {
    max-width: var(--mw);
    margin: 0 auto;
}

.foot-brand {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
}

.foot-brand .petal {
    color: var(--rose-lt);
}

.foot-copy {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.65;
    text-align: center;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.rv.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:960px) {
    .hero-stats {
        flex-wrap: wrap;
    }

    .hstat {
        border-right: none;
        border-bottom: 1px solid var(--sage-mid);
    }

    .hstat:last-child {
        border-bottom: none;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media(max-width:600px) {
    .wrap {
        padding: 0 20px;
    }

    .hero {
        padding: 82px 20px 36px;
    }

    section {
        padding: 72px 0 !important;
    }

    .nav-links .nav-a {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .hstat {
        border-right: none;
        border-bottom: 1px solid var(--sage-mid);
    }

    .hstat:last-child {
        border-bottom: none;
    }

    .foot-in {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-copy {
        text-align: left;
    }
}

@media(prefers-reduced-motion:reduce) {
    .rv {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    .live-dot,
    .fp {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================================
   FLOATING PETALS - fixed, full-page layer
============================================================ */
.page-petals {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Ensure all sections render above the fixed petal layer */
.nav,
header,
section,
footer {
    position: relative;
    z-index: 1;
}

.fp {
    position: absolute;
    animation: petal-float 14s ease-in-out infinite alternate;
    opacity: 0;
}

.fp-1 {
    top: -80px;
    right: -60px;
    width: 320px;
    opacity: 0.10;
    animation-duration: 14s;
    animation-delay: 0s;
}

.fp-2 {
    bottom: 5%;
    left: -70px;
    width: 260px;
    opacity: 0.08;
    animation-duration: 18s;
    animation-delay: -6s;
    animation-direction: alternate-reverse;
}

.fp-3 {
    top: 40%;
    right: -90px;
    width: 200px;
    opacity: 0.06;
    animation-duration: 22s;
    animation-delay: -10s;
}

.fp-4 {
    bottom: -60px;
    right: 20%;
    width: 180px;
    opacity: 0.07;
    animation-duration: 16s;
    animation-delay: -3s;
    animation-direction: alternate-reverse;
}

@keyframes petal-float {
    from {
        transform: scale(1) rotate(0deg) translateY(0);
        opacity: inherit;
    }

    to {
        transform: scale(1.08) rotate(12deg) translateY(-20px);
        opacity: inherit;
    }
}