/* ============================================
   JJUGGL.com - Blobitecture Design System
   Sunset-Warm Palette | Layered Depth | Organic Forms
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --molten-amber: #E87236;
    --dusk-rose: #C4486A;
    --warm-saffron: #F5A623;
    --parchment-blush: #FFF5EC;
    --terracotta-mist: #FCEADB;
    --burnt-umber: #8B3A1F;
    --volcanic-ash: #2D1B14;
    --sandstone: #A68872;
    --horizon-gold: #FDCB6E;
    --twilight-mauve: #9B59B6;

    --hero-gradient: linear-gradient(135deg, #FDCB6E 0%, #E87236 35%, #C4486A 65%, #9B59B6 100%);
    --blob-fill-gradient: radial-gradient(ellipse at 30% 40%, #FFF5EC 0%, #FCEADB 50%, #E8723622 100%);
    --ambient-glow: radial-gradient(circle at 50% 50%, #F5A62333 0%, transparent 70%);

    --font-display: 'Fraunces', serif;
    --font-body: 'Source Serif 4', serif;
    --font-accent: 'DM Sans', sans-serif;

    --display-size: clamp(3rem, 8vw, 7rem);
    --section-heading-size: clamp(1.8rem, 4vw, 3.5rem);
    --body-size: clamp(1rem, 1.2vw, 1.25rem);
}

/* --- 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: 400;
    font-size: var(--body-size);
    line-height: 1.65;
    color: var(--volcanic-ash);
    background-color: var(--parchment-blush);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Noise Texture Overlay --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    mix-blend-mode: multiply;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 3px;
    height: 100vh;
    z-index: 9998;
    transform-origin: top;
    transform: scaleY(0);
    background: linear-gradient(to bottom, var(--horizon-gold), var(--molten-amber), var(--dusk-rose), var(--twilight-mauve));
    transition: transform 0.1s linear;
}

/* --- Navigation Pill --- */
.nav-pill {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 245, 236, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(232, 114, 54, 0.15);
    box-shadow: 0 4px 20px rgba(232, 114, 54, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-pill:hover {
    background: rgba(255, 245, 236, 0.85);
    box-shadow: 0 6px 28px rgba(232, 114, 54, 0.18);
}

.nav-pill-text {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--burnt-umber);
    text-transform: uppercase;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 10;
}

.hero-blob {
    position: relative;
    width: 80vw;
    height: 70vh;
    min-height: 400px;
    max-width: 1200px;
    background: var(--hero-gradient);
    border-radius: 30% 70% 60% 40% / 50% 40% 70% 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px #E8723620, 0 8px 24px #C4486A15, 0 40px 120px #9B59B620;
    will-change: border-radius, transform;
    animation: heroPulse 6s ease-in-out infinite alternate, heroMorph 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes heroPulse {
    0% { transform: scale(0.98); }
    100% { transform: scale(1.02); }
}

@keyframes heroMorph {
    0%   { border-radius: 30% 70% 60% 40% / 50% 40% 70% 30%; }
    25%  { border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; }
    50%  { border-radius: 40% 60% 70% 30% / 60% 30% 40% 70%; }
    75%  { border-radius: 60% 40% 50% 50% / 30% 70% 60% 40%; }
    100% { border-radius: 30% 70% 60% 40% / 50% 40% 70% 30%; }
}

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

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: var(--display-size);
    font-variation-settings: 'opsz' 48, 'WONK' 1;
    color: var(--parchment-blush);
    line-height: 0.95;
    text-shadow: 0 2px 40px #e8723666, 0 4px 80px #C4486A33;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-title .letter {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--parchment-blush);
    opacity: 0.8;
    text-shadow: 0 2px 20px #E8723633;
    max-width: 500px;
    margin: 0 auto;
}

/* --- Orbiting Orbs (Hero) --- */
.orb {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    will-change: transform;
}

.orb-1 {
    width: 24px;
    height: 24px;
    background: var(--warm-saffron);
    opacity: 0.7;
    top: 50%;
    left: 50%;
    animation: orbit1 8s ease-in-out infinite;
}

.orb-2 {
    width: 18px;
    height: 18px;
    background: var(--dusk-rose);
    opacity: 0.6;
    top: 50%;
    left: 50%;
    animation: orbit2 10s ease-in-out infinite;
}

.orb-3 {
    width: 14px;
    height: 14px;
    background: var(--molten-amber);
    opacity: 0.65;
    top: 50%;
    left: 50%;
    animation: orbit3 7s ease-in-out infinite;
}

@keyframes orbit1 {
    0%   { transform: translate(-50%, -50%) translate(calc(40vw * 0.5), 0); }
    25%  { transform: translate(-50%, -50%) translate(0, calc(-35vh * 0.5)); }
    50%  { transform: translate(-50%, -50%) translate(calc(-40vw * 0.5), 0); }
    75%  { transform: translate(-50%, -50%) translate(0, calc(35vh * 0.5)); }
    100% { transform: translate(-50%, -50%) translate(calc(40vw * 0.5), 0); }
}

@keyframes orbit2 {
    0%   { transform: translate(-50%, -50%) translate(calc(-35vw * 0.4), calc(-30vh * 0.3)); }
    25%  { transform: translate(-50%, -50%) translate(calc(35vw * 0.4), calc(-30vh * 0.2)); }
    50%  { transform: translate(-50%, -50%) translate(calc(35vw * 0.3), calc(30vh * 0.4)); }
    75%  { transform: translate(-50%, -50%) translate(calc(-35vw * 0.3), calc(30vh * 0.3)); }
    100% { transform: translate(-50%, -50%) translate(calc(-35vw * 0.4), calc(-30vh * 0.3)); }
}

@keyframes orbit3 {
    0%   { transform: translate(-50%, -50%) translate(0, calc(38vh * 0.45)); }
    25%  { transform: translate(-50%, -50%) translate(calc(42vw * 0.45), 0); }
    50%  { transform: translate(-50%, -50%) translate(0, calc(-38vh * 0.45)); }
    75%  { transform: translate(-50%, -50%) translate(calc(-42vw * 0.45), 0); }
    100% { transform: translate(-50%, -50%) translate(0, calc(38vh * 0.45)); }
}

/* --- Content Sections --- */
.content-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10vh 5vw;
    margin-top: -12vh;
    z-index: 5;
}

.section-philosophy {
    justify-content: flex-start;
    background: linear-gradient(180deg, transparent 0%, rgba(252, 234, 219, 0.3) 50%, transparent 100%);
}

.section-motion {
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 0%, rgba(253, 203, 110, 0.08) 50%, transparent 100%);
}

.section-balance {
    justify-content: flex-start;
    background: linear-gradient(180deg, transparent 0%, rgba(196, 72, 106, 0.06) 50%, transparent 100%);
}

.section-experience {
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 0%, rgba(155, 89, 182, 0.06) 50%, transparent 100%);
}

.section-craft {
    justify-content: center;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 20, 0.04) 50%, transparent 100%);
}

/* --- Section Blobs --- */
.section-blob {
    position: relative;
    padding: clamp(2.5rem, 5vw, 5rem);
    max-width: 620px;
    background: var(--blob-fill-gradient);
    box-shadow: 0 20px 60px #E8723620, 0 8px 24px #C4486A15;
    will-change: border-radius, transform;
    z-index: 6;
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-blob.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.blob-left {
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    transform: translateX(-80px) translateY(40px);
    margin-right: auto;
    margin-left: 5vw;
}

.blob-right {
    border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%;
    transform: translateX(80px) translateY(40px);
    margin-left: auto;
    margin-right: 5vw;
}

.blob-center {
    border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
    transform: translateY(40px);
    margin: 0 auto;
}

.blob-content {
    position: relative;
    z-index: 7;
}

/* --- Section Headings --- */
.section-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: var(--section-heading-size);
    font-variation-settings: 'opsz' 48, 'WONK' 1;
    color: var(--volcanic-ash);
    line-height: 1.1;
    text-shadow: 0 2px 40px #e8723633;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.heading-text {
    display: block;
}

.heading-underline {
    display: block;
    position: relative;
    height: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.heading-underline::before,
.heading-underline::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--dusk-rose);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.heading-underline::before {
    left: 0;
    transform-origin: right center;
}

.heading-underline::after {
    right: 0;
    transform-origin: left center;
}

.section-heading.underline-visible .heading-underline::before,
.section-heading.underline-visible .heading-underline::after {
    transform: scaleX(1);
}

/* --- Body Text --- */
.section-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--body-size);
    line-height: 1.65;
    color: var(--volcanic-ash);
    max-width: 480px;
}

/* --- Decorative Blobs --- */
.decorative-blob {
    position: absolute;
    z-index: 3;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.content-section.in-view .decorative-blob {
    opacity: 1;
}

.deco-blob-1 {
    width: 300px;
    height: 250px;
    right: 10vw;
    top: 15%;
    background: radial-gradient(ellipse at 40% 30%, rgba(253, 203, 110, 0.2) 0%, rgba(232, 114, 54, 0.08) 60%, transparent 100%);
    border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.deco-blob-2 {
    width: 180px;
    height: 160px;
    right: 25vw;
    bottom: 10%;
    background: radial-gradient(ellipse at 60% 50%, rgba(196, 72, 106, 0.12) 0%, transparent 70%);
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
}

.deco-blob-3 {
    width: 350px;
    height: 280px;
    left: 5vw;
    top: 20%;
    background: radial-gradient(ellipse at 50% 40%, rgba(232, 114, 54, 0.12) 0%, rgba(196, 72, 106, 0.06) 60%, transparent 100%);
    border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.deco-blob-4 {
    width: 200px;
    height: 180px;
    left: 15vw;
    bottom: 15%;
    background: radial-gradient(ellipse at 40% 60%, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
    border-radius: 55% 45% 50% 50% / 45% 55% 55% 45%;
}

.deco-blob-5 {
    width: 280px;
    height: 240px;
    right: 8vw;
    top: 25%;
    background: radial-gradient(ellipse at 35% 45%, rgba(253, 203, 110, 0.15) 0%, rgba(245, 166, 35, 0.06) 60%, transparent 100%);
    border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.deco-blob-6 {
    width: 160px;
    height: 140px;
    right: 30vw;
    bottom: 20%;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 54, 0.1) 0%, transparent 70%);
    border-radius: 40% 60% 55% 45% / 50% 50% 45% 55%;
}

.deco-blob-7 {
    width: 320px;
    height: 260px;
    left: 8vw;
    top: 18%;
    background: radial-gradient(ellipse at 40% 35%, rgba(155, 89, 182, 0.12) 0%, rgba(196, 72, 106, 0.05) 60%, transparent 100%);
    border-radius: 55% 45% 50% 50% / 40% 60% 50% 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.deco-blob-8 {
    width: 190px;
    height: 170px;
    left: 20vw;
    bottom: 12%;
    background: radial-gradient(ellipse at 55% 45%, rgba(253, 203, 110, 0.1) 0%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%;
}

.deco-blob-9 {
    width: 260px;
    height: 220px;
    right: 12vw;
    top: 20%;
    background: radial-gradient(ellipse at 45% 40%, rgba(196, 72, 106, 0.1) 0%, rgba(155, 89, 182, 0.05) 60%, transparent 100%);
    border-radius: 50% 50% 40% 60% / 50% 50% 55% 45%;
}

.deco-blob-10 {
    width: 200px;
    height: 180px;
    left: 10vw;
    bottom: 18%;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 114, 54, 0.08) 0%, transparent 70%);
    border-radius: 55% 45% 50% 50% / 45% 55% 50% 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- Floating Orbs --- */
.float-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--warm-saffron);
    opacity: 0.4;
    z-index: 4;
    will-change: transform;
}

.float-orb-a {
    width: 18px;
    height: 18px;
    top: 30%;
    right: 15vw;
    animation: float1 5s ease-in-out infinite alternate;
}

.float-orb-b {
    width: 24px;
    height: 24px;
    top: 60%;
    right: 20vw;
    background: var(--dusk-rose);
    opacity: 0.35;
    animation: float2 6s ease-in-out infinite alternate;
}

.float-orb-c {
    width: 14px;
    height: 14px;
    bottom: 25%;
    right: 8vw;
    background: var(--molten-amber);
    opacity: 0.45;
    animation: float3 4.5s ease-in-out infinite alternate;
}

.float-orb-d {
    width: 20px;
    height: 20px;
    top: 35%;
    left: 12vw;
    animation: float2 5.5s ease-in-out infinite alternate;
}

.float-orb-e {
    width: 16px;
    height: 16px;
    bottom: 30%;
    left: 18vw;
    background: var(--dusk-rose);
    opacity: 0.35;
    animation: float1 7s ease-in-out infinite alternate;
}

.float-orb-f {
    width: 22px;
    height: 22px;
    top: 25%;
    right: 18vw;
    background: var(--molten-amber);
    opacity: 0.4;
    animation: float3 6s ease-in-out infinite alternate;
}

.float-orb-g {
    width: 12px;
    height: 12px;
    top: 55%;
    right: 12vw;
    animation: float1 4s ease-in-out infinite alternate;
}

.float-orb-h {
    width: 28px;
    height: 28px;
    bottom: 20%;
    right: 25vw;
    background: var(--dusk-rose);
    opacity: 0.3;
    animation: float2 7.5s ease-in-out infinite alternate;
}

.float-orb-i {
    width: 16px;
    height: 16px;
    top: 40%;
    left: 10vw;
    background: var(--molten-amber);
    opacity: 0.45;
    animation: float3 5s ease-in-out infinite alternate;
}

.float-orb-j {
    width: 20px;
    height: 20px;
    bottom: 35%;
    left: 22vw;
    animation: float1 6.5s ease-in-out infinite alternate;
}

.float-orb-k {
    width: 18px;
    height: 18px;
    top: 30%;
    left: 20vw;
    background: var(--dusk-rose);
    opacity: 0.35;
    animation: float2 5s ease-in-out infinite alternate;
}

.float-orb-l {
    width: 14px;
    height: 14px;
    top: 50%;
    right: 15vw;
    background: var(--molten-amber);
    opacity: 0.4;
    animation: float3 7s ease-in-out infinite alternate;
}

.float-orb-m {
    width: 26px;
    height: 26px;
    bottom: 25%;
    right: 20vw;
    animation: float1 8s ease-in-out infinite alternate;
    opacity: 0.3;
}

@keyframes float1 {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

@keyframes float2 {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-10px) translateX(5px); }
}

@keyframes float3 {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-15px) translateX(-4px); }
}

/* --- Connector Curves SVG --- */
.connector-curves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.connector-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease-out;
}

.connector-path.drawn {
    stroke-dashoffset: 0;
}

/* --- Blob Outlines (Section Dividers) --- */
.blob-outlines {
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.5s ease-out;
    pointer-events: none;
}

.blob-outlines.visible {
    opacity: 1;
}

.blob-outlines-1 {
    width: 500px;
    height: 375px;
    left: 50%;
    transform: translateX(-50%);
    top: 300vh;
}

.blob-outlines-2 {
    width: 450px;
    height: 337px;
    left: 50%;
    transform: translateX(-50%);
    top: 550vh;
}

/* --- Footer --- */
.site-footer {
    position: relative;
    padding: 15vh 5vw 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 20, 0.06) 100%);
}

.footer-blob {
    text-align: center;
    padding: 4rem 5rem;
    background: linear-gradient(135deg, rgba(45, 27, 20, 0.9) 0%, rgba(139, 58, 31, 0.85) 100%);
    border-radius: 50% 50% 45% 55% / 45% 55% 50% 50%;
    box-shadow: 0 20px 60px rgba(45, 27, 20, 0.25);
    animation: footerMorph 15s ease-in-out infinite;
}

@keyframes footerMorph {
    0%   { border-radius: 50% 50% 45% 55% / 45% 55% 50% 50%; }
    33%  { border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%; }
    66%  { border-radius: 55% 45% 50% 50% / 50% 50% 55% 45%; }
    100% { border-radius: 50% 50% 45% 55% / 45% 55% 50% 50%; }
}

.footer-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-variation-settings: 'opsz' 48, 'WONK' 1;
    color: var(--parchment-blush);
    text-shadow: 0 2px 40px #e8723666;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.footer-sub {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    color: var(--sandstone);
    opacity: 0.9;
}

/* --- Underline-Draw Pattern (links) --- */
a, .link-style {
    color: var(--burnt-umber);
    text-decoration: none;
    background-image: linear-gradient(var(--dusk-rose), var(--dusk-rose));
    background-size: 0% 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.4s ease;
}

a:hover, .link-style:hover {
    background-size: 100% 2px;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    .hero-blob {
        animation: none;
    }

    .orb, .float-orb {
        animation: none;
    }

    .footer-blob {
        animation: none;
    }

    .section-blob {
        transition: opacity 0.1s ease;
        transform: none;
    }

    .heading-underline::before,
    .heading-underline::after {
        transition: none;
    }

    .connector-path {
        transition: none;
    }

    .scroll-progress {
        transition: none;
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .content-section {
        padding: 8vh 4vw;
        margin-top: -6vh;
    }

    .section-blob {
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
        padding: clamp(2rem, 4vw, 3.5rem);
    }

    .blob-left {
        transform: translateY(30px);
    }

    .blob-right {
        transform: translateY(30px);
    }

    .content-section {
        justify-content: center;
    }

    .hero-blob {
        width: 92vw;
        height: 60vh;
    }

    .nav-pill {
        top: 16px;
        right: 16px;
        padding: 8px 16px;
    }

    .decorative-blob {
        display: none;
    }

    .footer-blob {
        padding: 3rem 3rem;
    }
}

@media (max-width: 480px) {
    .hero-blob {
        width: 95vw;
        height: 55vh;
    }

    .section-blob {
        padding: 2rem;
    }
}

/* --- Ambient Background Glow --- */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: 120vh;
    background: var(--ambient-glow);
    pointer-events: none;
    z-index: 0;
}

/* --- Section background gradient atmosphere --- */
.section-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(253, 203, 110, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.section-motion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(232, 114, 54, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.section-balance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 40% 40%, rgba(196, 72, 106, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.section-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 60% 60%, rgba(155, 89, 182, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.section-craft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, rgba(45, 27, 20, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* --- Glass blob effect --- */
.section-blob::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 245, 236, 0.4) 0%, rgba(252, 234, 219, 0.15) 100%);
    pointer-events: none;
    z-index: -1;
}

/* --- Warm shadow on blobs --- */
.section-blob::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border-radius: inherit;
    background: transparent;
    box-shadow: 0 20px 60px #E8723618, 0 8px 24px #C4486A10;
    z-index: -2;
    pointer-events: none;
}
