/* ============================================
   BBOTTL.com - Liquid Daydream
   Color Palette:
     Milk Glass:      #f4f0f8
     Petal Cream:     #fdf5ef
     Lilac Mist:      #d4c5ed
     Rose Dew:        #f2cdd6
     Seafoam Breath:  #c4e8e0
     Apricot Glow:    #fad4b8
     Plum Depth:      #4a3560
     Haze Violet:     #6b6578
     Frost Line:      #e8e0f0
   ============================================ */

/* ----- CSS Custom Properties ----- */
:root {
    --milk-glass: #f4f0f8;
    --petal-cream: #fdf5ef;
    --lilac-mist: #d4c5ed;
    --rose-dew: #f2cdd6;
    --seafoam: #c4e8e0;
    --apricot: #fad4b8;
    --plum-depth: #4a3560;
    --haze-violet: #6b6578;
    --frost-line: #e8e0f0;

    --font-display: 'Sora', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --font-accent: 'Space Mono', monospace;

    --scroll-weight: 200;
    --elastic-ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(107, 101, 120, 0.85);
    background: var(--milk-glass);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ----- Background Gradient Layer ----- */
#bg-gradient-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: linear-gradient(135deg, var(--milk-glass), var(--petal-cream), var(--milk-glass));
    background-size: 400% 400%;
    animation: bg-drift 30s ease infinite;
}

@keyframes bg-drift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ----- Iridescent Gradient Keyframes ----- */
@keyframes iridescent-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ----- Micro Bubble Particle Layer ----- */
#micro-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}

.micro-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(212,197,237,0.2));
    opacity: 0;
    animation: micro-float linear infinite;
}

@keyframes micro-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* ----- Scroll Indicator ----- */
#scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    transition: opacity 0.6s ease;
}

#scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-bubble {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.8), var(--lilac-mist));
    border: 1px solid rgba(212, 197, 237, 0.5);
    animation: scroll-drift 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(212, 197, 237, 0.4);
}

@keyframes scroll-drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* ----- Bubble Navigation ----- */
#bubble-nav {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 500;
}

.nav-cluster {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    transition: gap 0.4s var(--elastic-ease);
}

#bubble-nav:hover .nav-cluster {
    gap: 12px;
}

.nav-bubble {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 197, 237, 0.5);
    background: rgba(244, 240, 248, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    transition: all 0.4s var(--elastic-ease);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav-bubble span {
    font-family: var(--font-accent);
    font-size: 0;
    text-transform: lowercase;
    letter-spacing: 0.12em;
    color: var(--plum-depth);
    transition: font-size 0.3s ease;
    white-space: nowrap;
}

#bubble-nav:hover .nav-bubble {
    width: 80px;
    height: 40px;
    border-radius: 20px;
}

#bubble-nav:hover .nav-bubble span {
    font-size: 10px;
}

.nav-bubble:hover {
    background: rgba(212, 197, 237, 0.4);
    transform: scale(1.08);
    box-shadow: inset 0 0 20px rgba(212, 197, 237, 0.4);
}

/* ----- Section Base ----- */
.section-full {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ----- HERO SECTION ----- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lilac-mist), var(--seafoam), var(--rose-dew), var(--apricot));
    background-size: 400% 400%;
    animation: iridescent-shift 20s ease infinite;
}

.hero-bubble-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-medium-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7), rgba(212,197,237,0.15));
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto;
    transition: transform 0.3s ease-out;
    animation: float-up-wobble var(--duration, 12s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.hero-medium-bubble::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 20%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(-30deg);
}

@keyframes float-up-wobble {
    0% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-30px) translateX(10px) scale(1.02);
    }
    50% {
        transform: translateY(-15px) translateX(-8px) scale(0.98);
    }
    75% {
        transform: translateY(-40px) translateX(5px) scale(1.01);
    }
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 200;
    letter-spacing: 0.04em;
    color: var(--plum-depth);
    margin-bottom: 1rem;
}

.letter {
    display: inline-block;
    animation: letter-reveal 1.2s ease forwards;
    animation-delay: calc(var(--delay) * 0.18s + 0.3s);
    opacity: 0;
    filter: blur(16px);
}

@keyframes letter-reveal {
    0% {
        opacity: 0;
        filter: blur(16px);
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0) scale(1);
    }
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(74, 53, 96, 0.6);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: tagline-fade 1.5s ease 1.6s forwards;
}

@keyframes tagline-fade {
    to { opacity: 1; }
}

/* ----- Wave Dividers ----- */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 20;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-divider-hero .wave-path {
    fill: var(--petal-cream);
    animation: wave-morph-1 8s ease-in-out infinite;
}

.wave-divider-story .wave-path {
    fill: var(--milk-glass);
    animation: wave-morph-2 10s ease-in-out infinite;
}

.wave-divider-showcase .wave-path {
    fill: var(--petal-cream);
    animation: wave-morph-3 9s ease-in-out infinite;
}

.wave-divider-details .wave-path {
    fill: var(--plum-depth);
    animation: wave-morph-1 11s ease-in-out infinite;
}

@keyframes wave-morph-1 {
    0%, 100% {
        d: path('M0,80 C360,120 720,40 1080,80 C1260,100 1380,60 1440,80 L1440,120 L0,120 Z');
    }
    50% {
        d: path('M0,60 C360,30 720,100 1080,50 C1260,30 1380,90 1440,60 L1440,120 L0,120 Z');
    }
}

@keyframes wave-morph-2 {
    0%, 100% {
        d: path('M0,60 C240,100 480,20 720,60 C960,100 1200,20 1440,60 L1440,120 L0,120 Z');
    }
    50% {
        d: path('M0,80 C240,30 480,90 720,40 C960,20 1200,80 1440,50 L1440,120 L0,120 Z');
    }
}

@keyframes wave-morph-3 {
    0%, 100% {
        d: path('M0,40 C180,80 360,20 540,60 C720,100 900,20 1080,60 C1260,100 1380,40 1440,60 L1440,120 L0,120 Z');
    }
    50% {
        d: path('M0,70 C180,30 360,90 540,40 C720,20 900,80 1080,40 C1260,20 1380,70 1440,50 L1440,120 L0,120 Z');
    }
}

/* ----- BRAND STORY SECTION ----- */
.section-story {
    background: var(--petal-cream);
    padding: 120px 0 160px;
    min-height: 250vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8vh;
}

.blob-container {
    position: relative;
    max-width: 680px;
    width: 90%;
    padding: 3rem 2.5rem;
    animation: blob-breathe 12s ease-in-out infinite;
}

.blob-story-1 {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
    align-self: center;
}

.blob-story-2 {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation-delay: -4s;
    align-self: flex-end;
    margin-right: 10%;
}

.blob-story-3 {
    border-radius: 50% 50% 30% 70% / 40% 60% 60% 40%;
    animation-delay: -8s;
    align-self: flex-start;
    margin-left: 10%;
}

@keyframes blob-breathe {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    33% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    66% {
        border-radius: 50% 50% 70% 30% / 40% 60% 30% 70%;
    }
}

.frosted-panel {
    background: rgba(244, 240, 248, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 224, 240, 0.6);
    border-radius: inherit;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(74, 53, 96, 0.06);
}

/* ----- Section Headings ----- */
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-variation-settings: 'wght' var(--scroll-weight);
    color: var(--plum-depth);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ----- Body Text ----- */
.body-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.75;
    color: rgba(107, 101, 120, 0.85);
    max-width: 560px;
    margin: 0 auto;
}

/* ----- Fade-in on scroll ----- */
.fade-in-scroll {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: scale(1);
}

/* ----- Floating Mid Bubbles (decorative between paragraphs) ----- */
.floating-bubbles-mid {
    position: relative;
    height: 12vh;
    width: 100%;
    pointer-events: none;
}

.mid-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.6), rgba(212,197,237,0.2));
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float-up 12s ease-in-out infinite;
    background-image: linear-gradient(135deg, var(--lilac-mist), var(--seafoam), var(--rose-dew), var(--apricot));
    background-size: 400% 400%;
    animation: float-up 12s ease-in-out infinite, iridescent-shift 20s ease infinite;
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(8px);
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
    }
    75% {
        transform: translateY(-25px) translateX(3px);
    }
}

/* ----- SHOWCASE SECTION ----- */
.section-showcase {
    background: var(--milk-glass);
    padding: 120px 5% 160px;
    min-height: 250vh;
}

.showcase-heading {
    margin-bottom: 6vh;
}

.showcase-constellation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4vw;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-item {
    position: relative;
    flex: 0 0 auto;
}

.showcase-item-1 {
    width: clamp(200px, 28vw, 340px);
    height: clamp(200px, 28vw, 340px);
    margin-top: 4vh;
}

.showcase-item-2 {
    width: clamp(180px, 22vw, 280px);
    height: clamp(180px, 22vw, 280px);
    margin-top: 16vh;
}

.showcase-item-3 {
    width: clamp(220px, 30vw, 360px);
    height: clamp(220px, 30vw, 360px);
    margin-top: 2vh;
}

.showcase-item-4 {
    width: clamp(170px, 20vw, 260px);
    height: clamp(170px, 20vw, 260px);
    margin-top: 12vh;
}

.showcase-item-5 {
    width: clamp(190px, 24vw, 300px);
    height: clamp(190px, 24vw, 300px);
    margin-top: 8vh;
}

.blob-clip-image {
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
    overflow: hidden;
    animation: blob-breathe 10s ease-in-out infinite;
    border: 1px solid rgba(232, 224, 240, 0.6);
    box-shadow: 0 12px 40px rgba(74, 53, 96, 0.1);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: 200% 200%;
    animation: iridescent-shift 15s ease infinite;
    opacity: 0.85;
}

.orbit-bubble {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.7), rgba(196, 232, 224, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: orbit 8s linear infinite;
    top: 10%;
    left: -15px;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

.image-caption {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: lowercase;
    letter-spacing: 0.12em;
    color: var(--haze-violet);
    opacity: 0.7;
}

/* ----- DETAILS SECTION ----- */
.section-details {
    background: var(--petal-cream);
    padding: 120px 5% 200px;
    min-height: 250vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details-heading {
    margin-bottom: 6vh;
}

.details-orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3vw;
    max-width: 1100px;
    width: 100%;
}

.detail-card {
    flex: 0 1 280px;
    cursor: pointer;
    transition: all 0.6s var(--elastic-ease);
    clip-path: ellipse(50% 50% at 50% 50%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-card[data-expanded="true"] {
    clip-path: inset(0% round 24px);
    aspect-ratio: auto;
    flex: 0 1 320px;
}

.card-inner {
    text-align: center;
    padding: 2rem 1.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: border-radius 0.6s var(--elastic-ease);
}

.detail-card[data-expanded="true"] .card-inner {
    border-radius: 24px;
}

.card-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--plum-depth);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s var(--elastic-ease), opacity 0.4s ease 0.1s;
}

.detail-card[data-expanded="true"] .card-content {
    max-height: 300px;
    opacity: 1;
}

.detail-card:hover {
    transform: scale(1.08);
    box-shadow: inset 0 0 30px rgba(212, 197, 237, 0.5);
}

.detail-card-1 .card-inner {
    background: rgba(212, 197, 237, 0.35);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(212, 197, 237, 0.4);
}

.detail-card-2 .card-inner {
    background: rgba(242, 205, 214, 0.35);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(242, 205, 214, 0.4);
}

.detail-card-3 .card-inner {
    background: rgba(196, 232, 224, 0.35);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(196, 232, 224, 0.4);
}

.detail-card-4 .card-inner {
    background: rgba(250, 212, 184, 0.35);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(250, 212, 184, 0.4);
}

/* ----- CLOSING SECTION ----- */
.section-closing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, var(--petal-cream) 0%, var(--plum-depth) 50%, var(--milk-glass) 100%);
    overflow: hidden;
}

.closing-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.closing-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.4), rgba(212,197,237,0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-up-wobble var(--duration, 10s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.closing-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.closing-message {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 200;
    font-variation-settings: 'wght' var(--scroll-weight);
    color: rgba(244, 240, 248, 0.7);
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.closing-whisper {
    font-family: var(--font-display);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 200;
    letter-spacing: 0.3em;
    color: rgba(244, 240, 248, 0.35);
    text-transform: uppercase;
}

.closing-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, var(--milk-glass));
    z-index: 20;
    pointer-events: none;
}

/* ----- Water Ripple Effect ----- */
#ripple-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: none;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 197, 237, 0.4);
    animation: ripple-expand 1.2s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple-expand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.6;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

/* ----- Petal Drift ----- */
#petal-drift {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 90;
}

.petal {
    position: absolute;
    width: 12px;
    height: 8px;
    background: var(--rose-dew);
    border-radius: 50% 50% 50% 0;
    opacity: 0.3;
    animation: petal-fall linear infinite;
}

@keyframes petal-fall {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(100vh) translateX(80px) rotate(360deg);
        opacity: 0;
    }
}

/* ----- Caustic Light Pattern ----- */
.section-story::before,
.section-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 300px 300px at 20% 30%, rgba(196, 232, 224, 0.06), transparent),
        radial-gradient(ellipse 250px 250px at 70% 60%, rgba(212, 197, 237, 0.06), transparent),
        radial-gradient(ellipse 200px 200px at 50% 80%, rgba(250, 212, 184, 0.05), transparent);
    animation: caustic-drift 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes caustic-drift {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(3deg) scale(1.05);
    }
}

/* ----- Responsive Adjustments ----- */
@media (max-width: 768px) {
    .blob-container {
        width: 95%;
        padding: 2rem 1.5rem;
    }

    .frosted-panel {
        padding: 1.5rem 1.2rem;
    }

    .showcase-constellation {
        flex-direction: column;
        align-items: center;
    }

    .showcase-item {
        width: clamp(200px, 70vw, 300px) !important;
        height: clamp(200px, 70vw, 300px) !important;
        margin-top: 4vh !important;
    }

    .details-orbit {
        flex-direction: column;
        align-items: center;
    }

    .detail-card {
        flex: 0 1 auto;
        width: 250px;
        height: 250px;
    }

    .detail-card[data-expanded="true"] {
        width: 280px;
        height: auto;
    }

    #bubble-nav {
        bottom: 15px;
        right: 15px;
    }

    .blob-story-2 {
        align-self: center;
        margin-right: 0;
    }

    .blob-story-3 {
        align-self: center;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .section-heading {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .closing-message {
        font-size: clamp(1.5rem, 8vw, 3rem);
    }
}

/* ----- Prefers Reduced Motion ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .blob-container {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    .hero-medium-bubble,
    .micro-bubble,
    .mid-bubble,
    .closing-bubble,
    .petal {
        animation: none;
    }

    .letter {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
